mirror of
https://github.com/overte-org/overte.git
synced 2025-07-23 06:26:14 +02:00
Add missing 'var' to local variable
This commit is contained in:
parent
961f629074
commit
9c9bfeed33
1 changed files with 1 additions and 1 deletions
|
@ -158,7 +158,7 @@ function changeLobbyTextures() {
|
||||||
};
|
};
|
||||||
|
|
||||||
for (var j = 0; j < NUM_PANELS; j++) {
|
for (var j = 0; j < NUM_PANELS; j++) {
|
||||||
panelIndex = locationIndexToPanelIndex(j);
|
var panelIndex = locationIndexToPanelIndex(j);
|
||||||
textureProp["textures"]["file" + panelIndex] = "http:" + locations[j].thumbnail_url;
|
textureProp["textures"]["file" + panelIndex] = "http:" + locations[j].thumbnail_url;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue