PageRenderTime 85ms CodeModel.GetById 40ms RepoModel.GetById 2ms app.codeStats 0ms

/ext-4.1.0_b3/examples/desktop/js/ShortcutModel.js

https://bitbucket.org/srogerf/javascript
JavaScript | 20 lines | 8 code | 1 blank | 11 comment | 0 complexity | 396dbd22b9ee0aa2c3fbeea1ed56d604 MD5 | raw file
  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. * @class Ext.ux.desktop.ShortcutModel
  9. * @extends Ext.data.Model
  10. * This model defines the minimal set of fields for desktop shortcuts.
  11. */
  12. Ext.define('Ext.ux.desktop.ShortcutModel', {
  13. extend: 'Ext.data.Model',
  14. fields: [
  15. { name: 'name' },
  16. { name: 'iconCls' },
  17. { name: 'module' }
  18. ]
  19. });