moved series/season monitor toggle.

This commit is contained in:
kay.one 2013-07-13 22:24:18 -07:00
commit 53db90e19a
4 changed files with 6 additions and 6 deletions

View file

@ -89,7 +89,7 @@ define(
_setMonitoredState: function () {
var monitored = this.model.get('monitored');
this.ui.monitored.removeClass('icon-spinner icon-spin');
this.ui.monitored.removeClass('icon-spin');
if (this.model.get('monitored')) {
this.ui.monitored.addClass('icon-bookmark');
@ -109,11 +109,11 @@ define(
_refreshSeries: function () {
var self = this;
this.ui.refresh.addClass('icon-spinner icon-spin');
this.ui.refresh.addClass('icon-spin');
var promise = CommandController.Execute('refreshseries', { seriesId: this.model.get('id') });
promise.always(function () {
self.ui.refresh.removeClass('icon-spinner icon-spin');
self.ui.refresh.removeClass('icon-spin');
});
}
});