#19242644 [XEED] 글꼴색/배경색 직접입력시 문구가 사라지지 않는 문제 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7819 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
taggon 2010-11-09 05:43:24 +00:00
parent 14d3ddc3a4
commit aa2edd2b51

View file

@ -1033,6 +1033,14 @@ Font = xe.createPlugin('Font', {
self.cast('HIDE_COLOR_LAYER');
return false;
})
.end()
.find(':text')
.focus(function(){
$(this).prev().hide();
})
.blur(function(){
if (!$.trim(this.value)) $(this).prev().show();
});
},
deactivate : function() {
@ -2342,6 +2350,12 @@ FileUpload = xe.createPlugin('FileUpload', {
* @params Array of file info. file info = { id : 0, name : '', path : '', size : 0 };
*/
API_ADD_FILE_LIST : function(sender, params) {
var i, c, files = params[0];
for(i=0,c=files.length; i < c; i++) {
}
this.updateCount();
},
/**
* @brief Insert a file into the rich editor