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

fix medialibrary.js, lint and convert variable declerations

This commit is contained in:
Cameron 2020-07-09 11:36:54 +01:00
parent e230e05e6e
commit fd21f2198d
4 changed files with 38 additions and 38 deletions

View file

@ -4,7 +4,7 @@ import globalize from 'globalize';
/* eslint-disable indent */
export default function (view, params) {
var activityLog;
let activityLog;
if (params.useractivity !== 'false') {
view.querySelector('.activityItems').setAttribute('data-useractivity', 'true');
@ -29,6 +29,6 @@ import globalize from 'globalize';
activityLog = null;
});
};
}
/* eslint-enable indent */