mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-30 03:38:26 -07:00
New: Mass series editor
This commit is contained in:
parent
f76c4700a6
commit
a9ece10144
26 changed files with 606 additions and 34 deletions
16
src/UI/Cells/SeasonFolderCell.js
Normal file
16
src/UI/Cells/SeasonFolderCell.js
Normal 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;
|
||||
}
|
||||
});
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue