Fixed game list type generation.

This commit is contained in:
WrinklyNinja
2014-07-12 15:22:10 +01:00
parent 4379b156d1
commit ba09a30b3a
+1 -1
View File
@@ -467,7 +467,7 @@ function processURLParams() {
}
/* Fill in game row template's game type options. */
var select = document.getElementById('gameRow').content.querySelector('.name');
var select = document.getElementById('gameRow').content.querySelector('select');
for (var j = 0; j < data.gameTypes.length; ++j) {
var option = document.createElement('option');
option.value = data.gameTypes[j];