XpressEditor의 찾기/바꾸기 기능 활성화되도록 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6109 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2009-04-15 05:38:14 +00:00
parent 7584379666
commit 7a3c39393e
7 changed files with 3 additions and 4 deletions

View file

@ -2406,7 +2406,7 @@ xe.DialogLayerManager = jQuery.Class({
bModal = jQuery.$(bModal) || false;
if(!oLayer) return;
if(jQuery.inArray(oLayer, this.aOpenedLayers)) return;
//if(jQuery.inArray(oLayer, this.aOpenedLayers)) return;
this.oApp.exec("POSITION_DIALOG_LAYER", [oLayer]);
@ -4819,13 +4819,13 @@ xe.XE_FindReplacePlugin = jQuery.Class({
this.oReplaceInput_Replacement = oTmp[1];
this.oFindNextButton = jQuery("BUTTON.find_next", this.oUILayer).get(0);
this.oCancelButton = jQuery("BUTTON.cancel", this.oUILayer).get(0);
//this.oCancelButton = jQuery("BUTTON.cancel", this.oUILayer).get(0);
this.oReplaceButton = jQuery("BUTTON.replace", this.oUILayer).get(0);
this.oReplaceAllButton = jQuery("BUTTON.replace_all", this.oUILayer).get(0);
this.aCloseButtons = jQuery("BUTTON.close", this.oUILayer).get();
this.aCloseButtons[this.aCloseButtons.length] = this.oCancelButton;
//this.aCloseButtons[this.aCloseButtons.length] = this.oCancelButton;
},
$ON_MSG_APP_READY : function(){