mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
missing var
This commit is contained in:
parent
36fae11a38
commit
a1538a4ba6
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ define(["jQuery", "loading", "emby-checkbox", "listViewStyle", "emby-input", "em
|
|||
var hexCodes = [];
|
||||
var view = new DataView(buffer);
|
||||
|
||||
for (i = 0; i < view.byteLength; i += 4) {
|
||||
for (var i = 0; i < view.byteLength; i += 4) {
|
||||
var value = view.getUint32(i);
|
||||
var stringValue = value.toString(16);
|
||||
var paddedValue = ("00000000" + stringValue).slice(-"00000000".length);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue