Song.js 307 B

12345678910111213
  1. Ext.define('Pandora.model.Song', {
  2. extend: 'Ext.data.Model',
  3. fields: ['id', 'name', 'artist', 'album', 'played_date', 'station'],
  4. proxy: {
  5. type: 'ajax',
  6. url: 'data/recentsongs.json',
  7. reader: {
  8. type: 'json',
  9. root: 'results'
  10. }
  11. }
  12. });