Module.js 383 B

12345678910111213141516171819
  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. Ext.define('Ext.ux.desktop.Module', {
  8. mixins: {
  9. observable: 'Ext.util.Observable'
  10. },
  11. constructor: function (config) {
  12. this.mixins.observable.constructor.call(this, config);
  13. this.init();
  14. },
  15. init: Ext.emptyFn
  16. });