mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-08 19:42:15 +09:00
issue 1094 fixed 'generate_code.js' error when modify widget on IE
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@10130 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
e9c50d8cf2
commit
17fcd83cee
2 changed files with 3 additions and 1 deletions
|
|
@ -106,6 +106,8 @@ function doFillWidgetVars() {
|
||||||
var node = obj_list[j];
|
var node = obj_list[j];
|
||||||
if(node.name.indexOf('_')==0) continue;
|
if(node.name.indexOf('_')==0) continue;
|
||||||
if(node.name == 'widgetstyle') continue;
|
if(node.name == 'widgetstyle') continue;
|
||||||
|
if(node.type == 'button') continue;
|
||||||
|
if(node.name == '') continue;
|
||||||
|
|
||||||
var length = node.length;
|
var length = node.length;
|
||||||
var type = node.type;
|
var type = node.type;
|
||||||
|
|
|
||||||
|
|
@ -63,7 +63,7 @@ function doStartPageModify(zoneID, module_srl) {
|
||||||
function removeAllWidget() {
|
function removeAllWidget() {
|
||||||
if(!confirm(confirm_delete_msg)) return;
|
if(!confirm(confirm_delete_msg)) return;
|
||||||
restoreWidgetButtons();
|
restoreWidgetButtons();
|
||||||
xInnerHtml(zonePageObj,'');
|
jQuery(zonePageObj).html('');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue