mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 10:58:20 -07:00
Fix lint errors
This commit is contained in:
parent
d8f2cc1245
commit
1a0789f7b9
@ -16,7 +16,6 @@ import '../../assets/css/flexstyles.scss';
|
|||||||
import ServerConnections from '../ServerConnections';
|
import ServerConnections from '../ServerConnections';
|
||||||
import template from './filtermenu.template.html';
|
import template from './filtermenu.template.html';
|
||||||
|
|
||||||
|
|
||||||
function onSubmit(e) {
|
function onSubmit(e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
return false;
|
return false;
|
||||||
|
@ -27,7 +27,6 @@ import 'webcomponents.js/webcomponents-lite';
|
|||||||
import ServerConnections from '../ServerConnections';
|
import ServerConnections from '../ServerConnections';
|
||||||
import template from './tvguide.template.html';
|
import template from './tvguide.template.html';
|
||||||
|
|
||||||
|
|
||||||
function showViewSettings(instance) {
|
function showViewSettings(instance) {
|
||||||
import('./guide-settings').then(({default: guideSettingsDialog}) => {
|
import('./guide-settings').then(({default: guideSettingsDialog}) => {
|
||||||
guideSettingsDialog.show(instance.categoryOptions).then(function () {
|
guideSettingsDialog.show(instance.categoryOptions).then(function () {
|
||||||
@ -144,7 +143,6 @@ function Guide(options) {
|
|||||||
let autoRefreshInterval;
|
let autoRefreshInterval;
|
||||||
let programCells;
|
let programCells;
|
||||||
let lastFocusDirection;
|
let lastFocusDirection;
|
||||||
let programGrid;
|
|
||||||
|
|
||||||
self.refresh = function () {
|
self.refresh = function () {
|
||||||
currentDate = null;
|
currentDate = null;
|
||||||
@ -1100,7 +1098,7 @@ function Guide(options) {
|
|||||||
|
|
||||||
context.innerHTML = globalize.translateHtml(template, 'core');
|
context.innerHTML = globalize.translateHtml(template, 'core');
|
||||||
|
|
||||||
programGrid = context.querySelector('.programGrid');
|
const programGrid = context.querySelector('.programGrid');
|
||||||
const timeslotHeaders = context.querySelector('.timeslotHeaders');
|
const timeslotHeaders = context.querySelector('.timeslotHeaders');
|
||||||
|
|
||||||
if (layoutManager.tv) {
|
if (layoutManager.tv) {
|
||||||
|
Loading…
Reference in New Issue
Block a user