UNPKG

grunt-sencha-dependencies

Version:

A Grunt.js plugin which will figure out the order of Ext classes your Ext.application uses so the list can be passed on to further commands like concat, jshint, etc

12 lines 500 B
/* * We store Search model instances locally using localStorage. This makes it easy to have a single Store containing * all of the Searches and loading automatically. We use this to populate the list on the left, as well as in helping * boot the application up (see the 'first' action in app/controllers/searches.js). */ Ext.define('Twitter.store.Searches', { extend : 'Ext.data.Store', requires: ['Twitter.model.Search'], config: { model : 'Twitter.model.Search' } });