12345678910111213141516171819 |
- /* DO NOT EDIT - IT WILL BE OVERWRITTEN ON SERVER RESTART */
- jQuery.ajaxSetup({
- cache: true
- });
- $lib.orgtitle = $("title").html();
- $("body").addClass("anonymous");
- $lib.on("debug", function(level, msg) {
- console.log(level, msg);
- })
- $lib.on("ems-app-start", function() {
- $lib.emit("debug", "info", "ems-app-start called");
- })
- require("./__modules")($lib);
- try {
- require("../functions.js")($lib);
- } catch (e) {}
- setTimeout(function() {
- $lib.emit("ems-app-start", $lib);
- }, 2500)
|