mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
relocate let
This commit is contained in:
parent
e24dcad51a
commit
5bfaf811d5
1 changed files with 1 additions and 3 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue