openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

init.js (316B)


      1 
      2 import Workbench from "./workbench.js";
      3 
      4 // Startup the workbench
      5 //
      6 // Because this module is loaded with 'defer', the event 'domInteractive' is already fired and the DOM is parsed and ready.
      7 // So we do not need to wait for DOMContentLoaded here.
      8 
      9 Workbench.getInstance().initialize(); // Startup the Workbench
     10 
     11