PageRenderTime 22ms CodeModel.GetById 19ms RepoModel.GetById 1ms app.codeStats 0ms

/ext-4.0.7/examples/app/feed-viewer/app/model/Feed.js

https://bitbucket.org/srogerf/javascript
JavaScript | 26 lines | 10 code | 2 blank | 14 comment | 0 complexity | f25b110567ee7646d32db0ae099845c1 MD5 | raw file
  1. /*
  2. This file is part of Ext JS 4
  3. Copyright (c) 2011 Sencha Inc
  4. Contact: http://www.sencha.com/contact
  5. GNU General Public License Usage
  6. This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE included in the packaging of this file. Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html.
  7. If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact.
  8. */
  9. Ext.define('FV.model.Feed', {
  10. extend: 'Ext.data.Model',
  11. proxy: {
  12. type: 'memory'
  13. },
  14. fields: [
  15. {name: 'url', type: 'string'},
  16. {name: 'name', type: 'string'}
  17. ]
  18. });