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:
devjin 2012-02-16 01:30:31 +00:00
parent e9c50d8cf2
commit 17fcd83cee
2 changed files with 3 additions and 1 deletions

View file

@ -106,6 +106,8 @@ function doFillWidgetVars() {
var node = obj_list[j];
if(node.name.indexOf('_')==0) continue;
if(node.name == 'widgetstyle') continue;
if(node.type == 'button') continue;
if(node.name == '') continue;
var length = node.length;
var type = node.type;

View file

@ -63,7 +63,7 @@ function doStartPageModify(zoneID, module_srl) {
function removeAllWidget() {
if(!confirm(confirm_delete_msg)) return;
restoreWidgetButtons();
xInnerHtml(zonePageObj,'');
jQuery(zonePageObj).html('');
}
/**