* commit '2767ca7292510d5e5350a6b88be04b0b243f1c6a': chore: 给bi.file加个setUrl方法
@ -71,6 +71,10 @@ BI.MultifileEditor = BI.inherit(BI.Widget, {
this.file.reset();
},
setUrl: function (v) {
this.file.setUrl(v);
setMaxFileLength: function (v) {
this.file.setMaxFileLength(v);
@ -655,6 +655,13 @@
});
setUrl: function(v) {
this.options.url = v;
if (this.wrap) {
this.wrap.url = v;
}
this.options.maxLength = v;