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

Loading…
Cancel
Save