Fixed series actions wrapping to two lines

This commit is contained in:
Mark McDowall 2013-09-21 12:16:48 -07:00
commit 8ff34aac4d
7 changed files with 45 additions and 31 deletions

View file

@ -0,0 +1,37 @@
'use strict';
define(
[
'app',
'Cells/NzbDroneCell'
], function (App, NzbDroneCell) {
return NzbDroneCell.extend({
className: 'series-actions-cell',
events: {
'click .x-edit-series' : '_editSeries',
'click .x-remove-series': '_removeSeries'
},
render: function () {
this.$el.empty();
this.$el.html(
'<i class="icon-cog x-edit-series" title="" data-original-title="Edit Series"></i> ' +
'<i class="icon-remove x-remove-series" title="" data-original-title="Delete Series"></i>'
);
this.delegateEvents();
return this;
},
_editSeries: function () {
App.vent.trigger(App.Commands.EditSeriesCommand, {series:this.model});
},
_removeSeries: function () {
App.vent.trigger(App.Commands.DeleteSeriesCommand, {series:this.model});
}
});
});

View file

@ -0,0 +1,32 @@
'use strict';
define(
[
'backgrid'
], function (Backgrid) {
return Backgrid.Cell.extend({
className: 'series-status-cell',
render: function () {
this.$el.empty();
var monitored = this.model.get('monitored');
var status = this.model.get('status');
if (status === 'ended') {
this.$el.html('<i class="icon-stop grid-icon" title="Ended"></i>');
this.model.set('statusWeight', 3);
}
else if (!monitored) {
this.$el.html('<i class="icon-pause grid-icon" title="Not Monitored"></i>');
this.model.set('statusWeight', 2);
}
else {
this.$el.html('<i class="icon-play grid-icon" title="Continuing"></i>');
this.model.set('statusWeight', 1);
}
return this;
}
});
});

View file

@ -87,4 +87,8 @@ td.episode-status-cell, td.quality-cell {
color: rgb(255, 255, 255);
background-color: rgb(0, 129, 194);
}
}
.series-actions-cell {
width: 40px;
}