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

Remove unused eslint globals

This commit is contained in:
Bill Thornton 2025-02-13 15:44:56 -05:00
parent 18de10f2ea
commit 2ed007f508
3 changed files with 3 additions and 18 deletions

View file

@ -8,7 +8,7 @@ function enableScrollX() {
return !layoutManager.desktop;
}
function getTimersHtml(timers, options) {
export function getTimersHtml(timers, options) {
options = options || {};
const items = timers.map(function (t) {
@ -102,7 +102,3 @@ function getTimersHtml(timers, options) {
}
return Promise.resolve(html);
}
window.LiveTvHelpers = {
getTimersHtml: getTimersHtml
};