에디터 UI 디버깅

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6041 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ChanMyeong 2009-04-07 07:31:06 +00:00
parent a036e6a6ba
commit 6c1310e115
2 changed files with 524 additions and 524 deletions

View file

@ -129,7 +129,7 @@
.xpress-editor .tool li.character button.hover{ background-position:-450px -21px;} .xpress-editor .tool li.character button.hover{ background-position:-450px -21px;}
.xpress-editor .tool li.find button.hover{ background-position:-471px -21px;} .xpress-editor .tool li.find button.hover{ background-position:-471px -21px;}
.xpress-editor .tool li.extensions span.hover{ background-position:0 -21px;} .xpress-editor .tool li.extensions span.hover{ background-position:0 -21px;}
.xpress-editor .tool li.extensions span.hover button,{ background-position:right -21px;} .xpress-editor .tool li.extensions span.hover button{ background-position:right -21px;}
.xpress-editor .tool li.html span.hover{ background-position:0 -21px;} .xpress-editor .tool li.html span.hover{ background-position:0 -21px;}
.xpress-editor .tool li.html span.hover button{ background-position:right -21px;} .xpress-editor .tool li.html span.hover button{ background-position:right -21px;}
.xpress-editor .tool li.preview span.hover{ background-position:0 -21px;} .xpress-editor .tool li.preview span.hover{ background-position:0 -21px;}

View file

@ -5,7 +5,7 @@ xe.Editors = [];
function editorStart_xe(editor_sequence, primary_key, content_key, editor_height) { function editorStart_xe(editor_sequence, primary_key, content_key, editor_height) {
var textarea = jQuery("#xpress-editor-"+editor_sequence); var textarea = jQuery("#xpress-editor-"+editor_sequence);
var iframe = jQuery('<iframe id="editor_iframe_'+editor_sequence+'"frameborder="0" src="'+editor_path+'/blank.html" scrolling="no" style="width:100%;height:'+editor_height+'px">'); var iframe = jQuery('<iframe id="editor_iframe_'+editor_sequence+'"frameborder="0" src="'+editor_path+'/blank.html" scrolling="yes" style="width:100%;height:'+editor_height+'px">');
var htmlsrc = jQuery('<textarea rows="10" cols="20" class="input_syntax" style="display:none"></textarea>'); var htmlsrc = jQuery('<textarea rows="10" cols="20" class="input_syntax" style="display:none"></textarea>');
var form = textarea.get(0).form; var form = textarea.get(0).form;