Upgrade to ExtJS 4.0.2 - Released 06/09/2011
[extjs.git] / docs / app / store / History.js
diff --git a/docs/app/store/History.js b/docs/app/store/History.js
new file mode 100644 (file)
index 0000000..9288a78
--- /dev/null
@@ -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' }
+    ]
+});