* commit 'ff23380b373e595b0f65d00e23cabf400cc5a342': update 给iframe加方法
@ -18523,6 +18523,15 @@ BI.Iframe = BI.inherit(BI.Single, {
return this.options.src;
},
setName: function (name) {
this.options.name = name;
this.element.attr("name", name);
getName: function () {
return this.options.name;
getWidth: function () {
return this.options.width
@ -30,6 +30,15 @@ BI.Iframe = BI.inherit(BI.Single, {