issue 978: Fixed a bug for resizing an image component

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9948 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
taggon 2011-12-13 09:38:30 +00:00
parent 7ebe2051a4
commit 540cd6fd37
5 changed files with 104 additions and 92 deletions

View file

@ -165,7 +165,9 @@ function editorStart(editor_sequence, primary_key, content_key, editor_height, f
// 위젯 감시를 위한 더블클릭 이벤트 걸기
try {
xAddEventListener(iframe_obj.contentWindow.document,'dblclick',editorSearchComponent);
jQuery(iframe_obj.contentWindow.document)
.unbind('dblclick.widget')
.bind('dblclick.widget', editorSearchComponent);
} catch(e) {
}