/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

  1. define(['backbone', 'models/Dataset', 'backbone.localStorage'],
  2. function(Backbone, Dataset) {
  3. 'use strict';
  4. return Backbone.Collection.extend({
  5. localStorage: new Backbone.LocalStorage("TSRI-DATACHART-PLUGIN"),
  6. model: Dataset,
  7. //-- Keep the collection in order of recent viewings
  8. comparator : function(component) { return -component.get('updated'); },
  9. });
  10. });