/static/scripts/mvc/data.js
https://bitbucket.org/jmchilton/adapt · JavaScript · 19 lines · 12 code · 3 blank · 4 comment · 0 complexity · 6d87dd6412f6cb72467aa6773d440dcb MD5 · raw file
- /**
- * A dataset. In Galaxy, datasets are associated with a history, so
- * this object is also known as a HistoryDatasetAssociation.
- */
- var Dataset = Backbone.RelationalModel.extend({
- defaults: {
- id: '',
- type: '',
- name: '',
- hda_ldda: 'hda'
- },
- urlRoot: galaxy_paths.get('datasets_url')
- });
- var DatasetCollection = Backbone.Collection.extend({
- model: Dataset
- });