diff options
| author | Ben Harris <bjh21@bjh21.me.uk> | 2022-11-20 19:04:53 +0000 |
|---|---|---|
| committer | Ben Harris <bjh21@bjh21.me.uk> | 2022-11-28 22:51:15 +0000 |
| commit | b967a3ea86d6285457abc2a89e455c8f62d2c22a (patch) | |
| tree | dcedadd21948e2414a760e9e329cd51c247bbb23 /emcclib.js | |
| parent | e8cdac58e551f5c4444a6ff293eaad8e4923856e (diff) | |
| download | puzzles-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.js | 16 |
1 files changed, 0 insertions, 16 deletions
@@ -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 |