1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update sync dialogs

This commit is contained in:
Luke Pulverenti 2016-12-26 12:37:05 -05:00
parent db403c3cd4
commit f5ad0dbc21
12 changed files with 124 additions and 147 deletions

View file

@ -10,6 +10,7 @@
var self = this;
options = options || {};
self.options = options;
function resetSyncStatus() {
@ -67,12 +68,10 @@
}
}
syncToggle.prototype.refresh = function(item) {
syncToggle.prototype.refresh = function (item) {
if (this.options) {
this.options.item = item;
updateSyncStatus(this.options.container, item);
}
this.options.item = item;
updateSyncStatus(this.options.container, item);
};
syncToggle.prototype.destroy = function () {