Fix lint errors

This commit is contained in:
Bill Thornton 2020-11-25 00:40:53 -05:00
parent d8f2cc1245
commit 1a0789f7b9
2 changed files with 1 additions and 4 deletions

View File

@ -16,7 +16,6 @@ import '../../assets/css/flexstyles.scss';
import ServerConnections from '../ServerConnections';
import template from './filtermenu.template.html';
function onSubmit(e) {
e.preventDefault();
return false;

View File

@ -27,7 +27,6 @@ import 'webcomponents.js/webcomponents-lite';
import ServerConnections from '../ServerConnections';
import template from './tvguide.template.html';
function showViewSettings(instance) {
import('./guide-settings').then(({default: guideSettingsDialog}) => {
guideSettingsDialog.show(instance.categoryOptions).then(function () {
@ -144,7 +143,6 @@ function Guide(options) {
let autoRefreshInterval;
let programCells;
let lastFocusDirection;
let programGrid;
self.refresh = function () {
currentDate = null;
@ -1100,7 +1098,7 @@ function Guide(options) {
context.innerHTML = globalize.translateHtml(template, 'core');
programGrid = context.querySelector('.programGrid');
const programGrid = context.querySelector('.programGrid');
const timeslotHeaders = context.querySelector('.timeslotHeaders');
if (layoutManager.tv) {