mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 13:33:34 -07:00
moved series/season monitor toggle.
This commit is contained in:
parent
12dcc1ae6c
commit
53db90e19a
4 changed files with 6 additions and 6 deletions
|
@ -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');
|
||||
});
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue