mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Fix eslint errors for empty functions/constructors
This commit is contained in:
parent
8fefc22669
commit
9067b0e397
19 changed files with 50 additions and 37 deletions
|
@ -263,7 +263,9 @@ import '../../elements/emby-itemscontainer/emby-itemscontainer';
|
|||
reloadItems(tabContent);
|
||||
};
|
||||
|
||||
this.destroy = function () {};
|
||||
this.destroy = function () {
|
||||
// TODO: Remove if unused
|
||||
};
|
||||
}
|
||||
|
||||
/* eslint-enable indent */
|
||||
|
|
|
@ -274,7 +274,9 @@ import '../../elements/emby-itemscontainer/emby-itemscontainer';
|
|||
this.alphaPicker?.updateControls(getQuery(tabContent));
|
||||
};
|
||||
|
||||
this.destroy = function () {};
|
||||
this.destroy = function () {
|
||||
// TODO: Remove if unused
|
||||
};
|
||||
}
|
||||
|
||||
/* eslint-enable indent */
|
||||
|
|
|
@ -299,7 +299,9 @@ import '../../elements/emby-itemscontainer/emby-itemscontainer';
|
|||
this.alphaPicker?.updateControls(getQuery());
|
||||
};
|
||||
|
||||
this.destroy = function () {};
|
||||
this.destroy = function () {
|
||||
// TODO: Remove if unused
|
||||
};
|
||||
}
|
||||
|
||||
/* eslint-enable indent */
|
||||
|
|
|
@ -240,7 +240,9 @@ import '../../elements/emby-itemscontainer/emby-itemscontainer';
|
|||
this.alphaPicker?.updateControls(getQuery(tabContent));
|
||||
};
|
||||
|
||||
this.destroy = function () {};
|
||||
this.destroy = function () {
|
||||
// TODO: Remove if unused
|
||||
};
|
||||
}
|
||||
|
||||
/* eslint-enable indent */
|
||||
|
|
|
@ -200,7 +200,9 @@ import Dashboard from '../../scripts/clientUtils';
|
|||
reloadItems(tabContent);
|
||||
};
|
||||
|
||||
self.destroy = function () {};
|
||||
self.destroy = function () {
|
||||
// TODO: Remove if unused
|
||||
};
|
||||
}
|
||||
|
||||
/* eslint-enable indent */
|
||||
|
|
|
@ -247,7 +247,9 @@ import Dashboard from '../../scripts/clientUtils';
|
|||
reloadItems(tabContent);
|
||||
};
|
||||
|
||||
self.destroy = function () {};
|
||||
self.destroy = function () {
|
||||
// TODO: Remove if unused
|
||||
};
|
||||
}
|
||||
|
||||
/* eslint-enable indent */
|
||||
|
|
|
@ -298,7 +298,9 @@ import '../../elements/emby-itemscontainer/emby-itemscontainer';
|
|||
this.alphaPicker?.updateControls(getQuery(tabContent));
|
||||
};
|
||||
|
||||
this.destroy = function () {};
|
||||
this.destroy = function () {
|
||||
// TODO: Remove if unused
|
||||
};
|
||||
}
|
||||
|
||||
/* eslint-enable indent */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue