mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-16 02:18:16 -07:00
relocate let
This commit is contained in:
parent
e24dcad51a
commit
5bfaf811d5
@ -85,11 +85,9 @@ function getTunerName(providerId) {
|
||||
}
|
||||
|
||||
function renderDevices(view, devices) {
|
||||
let i;
|
||||
let length;
|
||||
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]);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user