New: Mass series editor

This commit is contained in:
Mark McDowall 2013-12-08 21:25:27 -08:00
parent f76c4700a6
commit a9ece10144
26 changed files with 606 additions and 34 deletions

View file

@ -0,0 +1,16 @@
'use strict';
define(
[
'backgrid'
], function (Backgrid) {
return Backgrid.Cell.extend({
className : 'season-folder-cell',
render: function () {
var seasonFolder = this.model.get('seasonFolder');
this.$el.html(seasonFolder.toString());
return this;
}
});
});