Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / examples / desktop / js / Module.js
1 /*!
2  * Ext JS Library 4.0
3  * Copyright(c) 2006-2011 Sencha Inc.
4  * licensing@sencha.com
5  * http://www.sencha.com/license
6  */
7
8 Ext.define('Ext.ux.desktop.Module', {
9     mixins: {
10         observable: 'Ext.util.Observable'
11     },
12
13     constructor: function (config) {
14         this.mixins.observable.constructor.call(this, config);
15         this.init();
16     },
17
18     init: Ext.emptyFn
19 });