diff options
Diffstat (limited to 'www')
-rw-r--r-- | www/js/html5ks.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/js/html5ks.js b/www/js/html5ks.js index d6c227b..f6f226a 100644 --- a/www/js/html5ks.js +++ b/www/js/html5ks.js @@ -193,7 +193,7 @@ window.html5ks = { } else { xhr.open("GET", "json/" + name + ".json"); xhr.onload = function () { - d = JSON.parse(xhr.responseText); + var d = JSON.parse(xhr.responseText); html5ks.data[name] = d; deferred.resolve(d); }; |