12345678910111213141516171819 |
- /*!
- * Ext JS Library 4.0
- * Copyright(c) 2006-2011 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
- });
|