Browse Source

可以两个fineui一起运行

es6
guy 4 years ago
parent
commit
a37ea6b994
  1. 5
      src/core/ob.js

5
src/core/ob.js

@ -28,10 +28,10 @@
* @class BI.OB
* @abstract
*/
BI.OB = BI.OB || function (config) {
var OB = function (config) {
this._constructor(config);
};
_.defaults(BI.OB.prototype, {
_.extend(OB.prototype, {
props: {},
init: null,
destroyed: null,
@ -184,4 +184,5 @@
this.purgeListeners();
}
});
BI.OB = BI.OB || OB;
})();

Loading…
Cancel
Save