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

relocate let

This commit is contained in:
Cameron 2020-08-11 20:21:46 +01:00
parent e24dcad51a
commit 5bfaf811d5

View file

@ -85,11 +85,9 @@ function getTunerName(providerId) {
} }
function renderDevices(view, devices) { function renderDevices(view, devices) {
let i;
let length;
let html = ''; let html = '';
for (i = 0, length = devices.length; i < length; i++) { for (let i = 0, length = devices.length; i < length; i++) {
html += getDeviceHtml(devices[i]); html += getDeviceHtml(devices[i]);
} }