Upgrade to ExtJS 4.0.2 - Released 06/09/2011
[extjs.git] / docs / app / store / History.js
1 /**
2  * History Store
3  */
4 Ext.define('Docs.store.History', {
5     extend: 'Ext.data.Store',
6     model: 'Docs.model.History',
7     // Sort history with latest on top
8     sorters: [
9         { property: 'id', direction: 'DESC' }
10     ]
11 });