mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
moved series/season monitor toggle.
This commit is contained in:
@@ -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');
|
||||
});
|
||||
}
|
||||
});
|
||||
|
Reference in New Issue
Block a user