mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-27 23:29:57 +09:00
#19242644 [XEED] 글꼴색/배경색 직접입력시 문구가 사라지지 않는 문제 수정
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7819 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
14d3ddc3a4
commit
aa2edd2b51
1 changed files with 14 additions and 0 deletions
|
|
@ -1033,6 +1033,14 @@ Font = xe.createPlugin('Font', {
|
||||||
self.cast('HIDE_COLOR_LAYER');
|
self.cast('HIDE_COLOR_LAYER');
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
})
|
||||||
|
.end()
|
||||||
|
.find(':text')
|
||||||
|
.focus(function(){
|
||||||
|
$(this).prev().hide();
|
||||||
|
})
|
||||||
|
.blur(function(){
|
||||||
|
if (!$.trim(this.value)) $(this).prev().show();
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
deactivate : function() {
|
deactivate : function() {
|
||||||
|
|
@ -2342,6 +2350,12 @@ FileUpload = xe.createPlugin('FileUpload', {
|
||||||
* @params Array of file info. file info = { id : 0, name : '', path : '', size : 0 };
|
* @params Array of file info. file info = { id : 0, name : '', path : '', size : 0 };
|
||||||
*/
|
*/
|
||||||
API_ADD_FILE_LIST : function(sender, params) {
|
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
|
* @brief Insert a file into the rich editor
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue