/js/collections/DatasetList.js
https://bitbucket.org/sulab/data-chart-plugin · JavaScript · 12 lines · 9 code · 2 blank · 1 comment · 0 complexity · cefdcf55ef0f7d197a90338e9df74fad MD5 · raw file
- define(['backbone', 'models/Dataset', 'backbone.localStorage'],
- function(Backbone, Dataset) {
- 'use strict';
- return Backbone.Collection.extend({
- localStorage: new Backbone.LocalStorage("TSRI-DATACHART-PLUGIN"),
- model: Dataset,
- //-- Keep the collection in order of recent viewings
- comparator : function(component) { return -component.get('updated'); },
- });
- });