X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/3789b528d8dd8aad4558e38e22d775bcab1cbd36..6746dc89c47ed01b165cc1152533605f97eb8e8d:/docs/app/store/History.js diff --git a/docs/app/store/History.js b/docs/app/store/History.js new file mode 100644 index 00000000..9288a781 --- /dev/null +++ b/docs/app/store/History.js @@ -0,0 +1,11 @@ +/** + * History Store + */ +Ext.define('Docs.store.History', { + extend: 'Ext.data.Store', + model: 'Docs.model.History', + // Sort history with latest on top + sorters: [ + { property: 'id', direction: 'DESC' } + ] +});