sim-web-shell 0.1.0-rc.1

sim-web-shell: the binary that serves the SIM WebUI shell.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SIM Web-UI legacy shell boot script.
//
// The active shell loads app.js. This compatibility boot only confirms the
// page loaded and reports it in the console; it contains no domain logic and no
// second data model.
"use strict";

(function boot() {
  const shell = document.getElementById("shell");
  if (!shell) {
    return;
  }
  shell.dataset.booted = "legacy";
  // eslint-disable-next-line no-console
  console.log("sim-web-shell: legacy shell booted");
})();