issue 2130

1. added init_options null check.
2. added attrFilter list check.
3. modified target of event listner.


git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.3@10862 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
devjin 2012-07-10 09:25:39 +00:00
parent 30ad13026f
commit 7db2d72906
3 changed files with 20 additions and 10 deletions

View file

@ -53,9 +53,9 @@ function doStartPageModify(zoneID, module_srl) {
doFitBorderSize();
// 드래그와 리사이즈와 관련된 이벤트 리스너 생성
xAddEventListener(document,"click",doCheckWidget);
xAddEventListener(document,"mousedown",doCheckWidgetDrag);
xAddEventListener(document,'mouseover',widgetSetup);
xAddEventListener(document.getElementById('zonePageContent'), "click",doCheckWidget);
xAddEventListener(document.getElementById('zonePageContent'), "mousedown",doCheckWidgetDrag);
xAddEventListener(document.getElementById('zonePageContent'), 'mouseover',widgetSetup);
}