summaryrefslogtreecommitdiff
path: root/www/js/api.js
diff options
context:
space:
mode:
Diffstat (limited to 'www/js/api.js')
-rw-r--r--www/js/api.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/www/js/api.js b/www/js/api.js
index b6fd474..7ae4e38 100644
--- a/www/js/api.js
+++ b/www/js/api.js
@@ -1,5 +1,5 @@
"use strict";
-window.html5ks.api = {
+window.html5ks.api = new (function () { return {
init: function () {
var chrs = html5ks.data.characters;
for (var ch in chrs) {
@@ -477,4 +477,4 @@ window.html5ks.api = {
html5ks.state[type] = status;
document.getElementById(type).style.display = status ? "block" : "none";
}
-};
+};});