XpressEditor의 찾기/바꾸기 기능 활성화되도록 수정
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6109 201d5d3c-b55e-5fd7-737f-ddc643e51545
|
|
@ -421,7 +421,6 @@
|
|||
<button type="button" class="find_next" title="{$lang->edit->next_search_words}"><span>{$lang->edit->next_search_words}</span></button>
|
||||
<button type="button" class="replace" title="{$lang->cmd_replace}"><span>{$lang->cmd_replace}</span></button>
|
||||
<button type="button" class="replace_all" title="{$lang->edit->replace_all}"><span>{$lang->edit->replace_all}</span></button>
|
||||
<button type="button" class="cancel" title="{$lang->cmd_cancel}"><span>{$lang->cmd_cancel}</span></button>
|
||||
</div>
|
||||
<button type="button" class="close" title="{$lang->edit->close_search_replace}"><span>{$lang->edit->close_search_replace}</span></button>
|
||||
</div>
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 651 B |
|
Before Width: | Height: | Size: 417 B After Width: | Height: | Size: 365 B |
|
Before Width: | Height: | Size: 456 B After Width: | Height: | Size: 374 B |
|
Before Width: | Height: | Size: 392 B After Width: | Height: | Size: 386 B |
|
Before Width: | Height: | Size: 443 B After Width: | Height: | Size: 420 B |
|
|
@ -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(){
|
||||
|
|
|
|||