mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 11:44:10 +09:00
#18310162 관련 파이어폭스에서 이미지 사이즈 한번 수정하고 나면 ( 컴포넌트 새 창을 통해서 ) 다른 이미지 더블클릭이 안되던 문제 수정., 안쓰는 부분 제거
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6839 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
1d357e72df
commit
80b12351d9
2 changed files with 7 additions and 7 deletions
|
|
@ -4886,7 +4886,7 @@ xe.XE_FindReplacePlugin = jQuery.Class({
|
|||
},
|
||||
|
||||
$ON_SHOW_ACTIVE_LAYER : function(){
|
||||
this.oApp.exec( "HIDE_DIALOG_LAYER", [this.oUILayer]);
|
||||
this.oApp.exec("HIDE_DIALOG_LAYER", [this.oUILayer]);
|
||||
},
|
||||
|
||||
$ON_SHOW_FIND_REPLACE_LAYER : function(){
|
||||
|
|
@ -5681,6 +5681,7 @@ xe.XE_XHTMLFormatter = $.Class({
|
|||
xe.XE_Extension = jQuery.Class({
|
||||
name : "XE_Extension",
|
||||
seq : '',
|
||||
last_doc : '',
|
||||
|
||||
$init : function(elAppContainer, editor_sequence) {
|
||||
this.seq = editor_sequence;
|
||||
|
|
@ -5711,10 +5712,12 @@ xe.XE_Extension = jQuery.Class({
|
|||
|
||||
jQuery('img,div[editor_component]', doc).each(function(){
|
||||
var obj = jQuery(this);
|
||||
if(this.nodeName == 'IMG' && !obj.attr('editor_component')) obj.attr('editor_component','image_link')
|
||||
if(!obj.attr('xeHandled')) {
|
||||
obj.attr('xeHandled','YES');
|
||||
if(this.nodeName == 'IMG' && !obj.attr('editor_component')) {
|
||||
obj.attr('editor_component','image_link');
|
||||
}
|
||||
if(this.last_doc != doc) {
|
||||
obj.dblclick(fn);
|
||||
this.last_doc = doc;
|
||||
}
|
||||
});
|
||||
},
|
||||
|
|
@ -5768,11 +5771,9 @@ xe.XE_AutoSave = jQuery.Class({
|
|||
},
|
||||
|
||||
$ON_MSG_APP_READY : function() {
|
||||
var elSrl = jQuery(this.form._saved_doc_srl);
|
||||
var elTitle = jQuery(this.form._saved_doc_title);
|
||||
var elContent = jQuery(this.form._saved_doc_content);
|
||||
|
||||
var doc_srl = jQuery.trim(elSrl.val());
|
||||
var title = jQuery.trim(elTitle.val());
|
||||
var content = jQuery.trim(elContent.val());
|
||||
|
||||
|
|
|
|||
|
|
@ -206,7 +206,6 @@ function editorGetAutoSavedDoc(form) {
|
|||
setTimeout(function() {
|
||||
var response_tags = new Array("error","message","editor_sequence","title","content","document_srl");
|
||||
exec_xml('editor',"procEditorLoadSavedDocument", param, function(a,b,c) { editorRelKeys[param['editor_sequence']]['primary'].value = a['document_srl']; if(typeof(uploadSettingObj[param['editor_sequence']]) == 'object') editorUploadInit(uploadSettingObj[param['editor_sequence']], true); }, response_tags);
|
||||
|
||||
}, 0);
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue