mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
Cleaned up modals in the UI.
added empty modal for episode info
This commit is contained in:
parent
7cf7b5e051
commit
27fc51da48
16 changed files with 118 additions and 67 deletions
|
@ -1,5 +1,5 @@
|
|||
'use strict';
|
||||
define(['app'], function () {
|
||||
define(['app', 'Series/Details/EpisodeDetailCell'], function () {
|
||||
NzbDrone.Series.Details.SeasonLayout = Backbone.Marionette.Layout.extend({
|
||||
template: 'Series/Details/SeasonLayoutTemplate',
|
||||
|
||||
|
@ -8,6 +8,11 @@ define(['app'], function () {
|
|||
},
|
||||
|
||||
columns: [
|
||||
{
|
||||
name : 'details',
|
||||
editable: false,
|
||||
cell : NzbDrone.Series.Details.EpisodeDetailCell
|
||||
},
|
||||
{
|
||||
name : 'episodeNumber',
|
||||
label : '#',
|
||||
|
@ -22,10 +27,10 @@ define(['app'], function () {
|
|||
cell : 'string'
|
||||
},
|
||||
{
|
||||
name : 'airDate',
|
||||
label : 'Air Date',
|
||||
editable : false,
|
||||
cell : 'date'
|
||||
name : 'airDate',
|
||||
label : 'Air Date',
|
||||
editable: false,
|
||||
cell : 'date'
|
||||
//formatter: new Backgrid.AirDateFormatter()
|
||||
}
|
||||
],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue