aboutsummaryrefslogtreecommitdiff
path: root/emcclib.js
diff options
context:
space:
mode:
authorBen Harris <bjh21@bjh21.me.uk>2022-11-20 19:04:53 +0000
committerBen Harris <bjh21@bjh21.me.uk>2022-11-28 22:51:15 +0000
commitb967a3ea86d6285457abc2a89e455c8f62d2c22a (patch)
treedcedadd21948e2414a760e9e329cd51c247bbb23 /emcclib.js
parente8cdac58e551f5c4444a6ff293eaad8e4923856e (diff)
downloadpuzzles-b967a3ea86d6285457abc2a89e455c8f62d2c22a.zip
puzzles-b967a3ea86d6285457abc2a89e455c8f62d2c22a.tar.gz
puzzles-b967a3ea86d6285457abc2a89e455c8f62d2c22a.tar.bz2
puzzles-b967a3ea86d6285457abc2a89e455c8f62d2c22a.tar.xz
js: Remove support for creating the status bar in JavaScript
Now we depend on its being in the HTML.
Diffstat (limited to 'emcclib.js')
-rw-r--r--emcclib.js16
1 files changed, 0 insertions, 16 deletions
diff --git a/emcclib.js b/emcclib.js
index dd56191..1be8979 100644
--- a/emcclib.js
+++ b/emcclib.js
@@ -514,22 +514,6 @@ mergeInto(LibraryManager.library, {
},
/*
- * void js_canvas_make_statusbar(void);
- *
- * Cause a status bar to exist. Called at setup time if the puzzle
- * back end turns out to want one.
- */
- js_canvas_make_statusbar: function() {
- if (statusbar === null) {
- var statusholder = document.getElementById("statusbarholder");
- statusbar = document.createElement("div");
- statusbar.id = "statusbar";
- statusbar.appendChild(document.createTextNode(" "));
- statusholder.appendChild(statusbar);
- }
- },
-
- /*
* void js_canvas_remove_statusbar(void);
*
* Cause a status bar not to exist. Called at setup time if the