Browse Source

Pull request #1394: 可以两个fineui一起运行

Merge in VISUAL/fineui from ~GUY/fineui:master to master

* commit 'd3333289f7e6d35d5b2eb050eb797d33ce752a25':
  可以两个fineui一起运行
es6
guy 4 years ago
parent
commit
219bddc19d
  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