discordmessengercustom-servicesmacoslinuxwindowsinboxwhatsappicloudtweetdeckhipchattelegramhangoutsslackgmailskypefacebook-workplaceoutlookemailmicrosoft-teams
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.
20 lines
379 B
20 lines
379 B
9 years ago
|
/*!
|
||
|
* Ext JS Library
|
||
|
* Copyright(c) 2006-2014 Sencha Inc.
|
||
|
* licensing@sencha.com
|
||
|
* http://www.sencha.com/license
|
||
|
*/
|
||
|
|
||
|
Ext.define('Ext.ux.desktop.Module', {
|
||
|
mixins: {
|
||
|
observable: 'Ext.util.Observable'
|
||
|
},
|
||
|
|
||
|
constructor: function (config) {
|
||
|
this.mixins.observable.constructor.call(this, config);
|
||
|
this.init();
|
||
|
},
|
||
|
|
||
|
init: Ext.emptyFn
|
||
|
});
|