|
|
@ -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; |
|
|
|
})(); |
|
|
|
})(); |
|
|
|