microsoft-teamsdiscordmessengercustom-servicesmacoslinuxwindowsinboxwhatsappicloudtweetdeckhipchattelegramhangoutsslackgmailskypefacebook-workplaceoutlookemail
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.0 KiB
38 lines
1.0 KiB
9 years ago
|
/**
|
||
|
* A Ext.mixin.Observable subclass that is provided for backward compatibility.
|
||
|
* Applications should avoid using this class, and use Ext.mixin.Observable instead.
|
||
|
*/
|
||
|
Ext.define('Ext.util.Observable', {
|
||
|
extend: 'Ext.mixin.Observable',
|
||
|
|
||
|
// The constructor of Ext.util.Observable instances processes the config object by
|
||
|
// calling Ext.apply(this, config); instead of this.initConfig(config);
|
||
|
$applyConfigs: true
|
||
|
}, function(Observable) {
|
||
|
var Super = Ext.mixin.Observable;
|
||
|
|
||
|
/**
|
||
|
* @method releaseCapture
|
||
|
* @static
|
||
|
* @inheritdoc Ext.mixin.Observable#releaseCapture
|
||
|
*/
|
||
|
Observable.releaseCapture = Super.releaseCapture;
|
||
|
|
||
|
/**
|
||
|
* @method capture
|
||
|
* @static
|
||
|
* @inheritdoc Ext.mixin.Observable#capture
|
||
|
*/
|
||
|
Observable.capture = Super.capture;
|
||
|
|
||
|
// private
|
||
|
Observable.captureArgs = Super.captureArgs;
|
||
|
|
||
|
/**
|
||
|
* @method observe
|
||
|
* @static
|
||
|
* @inheritdoc Ext.mixin.Observable#observe
|
||
|
*/
|
||
|
Observable.observe = Observable.observeClass = Super.observe;
|
||
|
});
|