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

Merge pull request #1645 from MrTimscampi/another-es6-pr

Migrate appRouter to ES6
This commit is contained in:
dkanada 2020-08-16 22:09:04 +09:00 committed by GitHub
commit 50e0e0dd7e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 560 additions and 618 deletions

File diff suppressed because it is too large Load diff

View file

@ -375,7 +375,7 @@ import 'scrollStyles';
dlg.setAttribute('data-lockscroll', 'true');
}
if (options.enableHistory !== false && appRouter.enableNativeHistory()) {
if (options.enableHistory !== false) {
dlg.setAttribute('data-history', 'true');
}

View file

@ -8,7 +8,6 @@ import browser from 'browser';
import actionsheet from 'actionsheet';
/* eslint-disable indent */
export function getCommands(options) {
const item = options.item;
const user = options.user;

View file

@ -9,7 +9,6 @@ import 'programStyles';
import 'emby-button';
/* eslint-disable indent */
function getTimerIndicator(item) {
let status;