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

Remove unused variables

This commit is contained in:
Bill Thornton 2021-01-26 22:20:12 -05:00
parent 6a60938b09
commit f60b7686d0
110 changed files with 242 additions and 277 deletions

View file

@ -9,7 +9,6 @@ import autoFocuser from '../../../components/autoFocuser';
export default function (view, params) {
let settingsInstance;
let hasChanges;
const userId = params.userId || ApiClient.getCurrentUserId();
const currentSettings = userId === ApiClient.getCurrentUserId() ? userSettings : new UserSettings();
@ -30,10 +29,6 @@ import autoFocuser from '../../../components/autoFocuser';
}
});
view.addEventListener('change', function () {
hasChanges = true;
});
view.addEventListener('viewdestroy', function () {
if (settingsInstance) {
settingsInstance.destroy();

View file

@ -10,7 +10,6 @@ import '../../../components/listview/listview.scss';
export default function (view, params) {
let homescreenSettingsInstance;
let hasChanges;
const userId = params.userId || ApiClient.getCurrentUserId();
const currentSettings = userId === ApiClient.getCurrentUserId() ? userSettings : new UserSettings();
@ -31,10 +30,6 @@ import '../../../components/listview/listview.scss';
}
});
view.addEventListener('change', function () {
hasChanges = true;
});
view.addEventListener('viewdestroy', function () {
if (homescreenSettingsInstance) {
homescreenSettingsInstance.destroy();

View file

@ -11,7 +11,6 @@ import '../../../components/listview/listview.scss';
export default function (view, params) {
let settingsInstance;
let hasChanges;
const userId = params.userId || ApiClient.getCurrentUserId();
const currentSettings = userId === ApiClient.getCurrentUserId() ? userSettings : new UserSettings();
@ -32,10 +31,6 @@ import '../../../components/listview/listview.scss';
}
});
view.addEventListener('change', function () {
hasChanges = true;
});
view.addEventListener('viewdestroy', function () {
if (settingsInstance) {
settingsInstance.destroy();

View file

@ -54,7 +54,7 @@ function onFileReaderError(evt) {
}
}
function onFileReaderAbort(evt) {
function onFileReaderAbort() {
loading.hide();
toast(globalize.translate('FileReadCancelled'));
}
@ -95,7 +95,7 @@ export default function (view, params) {
});
});
});
view.querySelector('#btnAddImage').addEventListener('click', function (evt) {
view.querySelector('#btnAddImage').addEventListener('click', function () {
view.querySelector('#uploadImage').click();
});
view.querySelector('#uploadImage').addEventListener('change', function (evt) {

View file

@ -9,7 +9,6 @@ import autoFocuser from '../../../components/autoFocuser';
export default function (view, params) {
let subtitleSettingsInstance;
let hasChanges;
const userId = params.userId || ApiClient.getCurrentUserId();
const currentSettings = userId === ApiClient.getCurrentUserId() ? userSettings : new UserSettings();
@ -30,10 +29,6 @@ import autoFocuser from '../../../components/autoFocuser';
}
});
view.addEventListener('change', function () {
hasChanges = true;
});
view.addEventListener('viewdestroy', function () {
if (subtitleSettingsInstance) {
subtitleSettingsInstance.destroy();