Removed delete button from series lists, added refresh button

New: Refresh button on series lists (replaces delete)
New: Show series title on poster on hover
This commit is contained in:
Mark McDowall
2014-06-18 23:46:04 -07:00
parent 420e6ee533
commit 6c9ea60382
7 changed files with 106 additions and 55 deletions

View File

@@ -0,0 +1,41 @@
'use strict';
define(
[
'vent',
'marionette',
'Commands/CommandController'
], function (vent, Marionette, CommandController) {
return Marionette.ItemView.extend({
ui: {
refresh : '.x-refresh'
},
events: {
'click .x-edit' : '_editSeries',
'click .x-refresh' : '_refreshSeries'
},
onRender: function () {
CommandController.bindToCommand({
element: this.ui.refresh,
command: {
name : 'refreshSeries',
seriesId : this.model.get('id')
}
});
},
_editSeries: function () {
vent.trigger(vent.Commands.EditSeriesCommand, {series: this.model});
},
_refreshSeries: function () {
CommandController.Execute('refreshSeries', {
name : 'refreshSeries',
seriesId: this.model.id
});
}
});
});