ems-core_client.js 481 B

12345678910111213141516171819
  1. /* DO NOT EDIT - IT WILL BE OVERWRITTEN ON SERVER RESTART */
  2. jQuery.ajaxSetup({
  3. cache: true
  4. });
  5. $lib.orgtitle = $("title").html();
  6. $("body").addClass("anonymous");
  7. $lib.on("debug", function(level, msg) {
  8. console.log(level, msg);
  9. })
  10. $lib.on("ems-app-start", function() {
  11. $lib.emit("debug", "info", "ems-app-start called");
  12. })
  13. require("./__modules")($lib);
  14. try {
  15. require("../functions.js")($lib);
  16. } catch (e) {}
  17. setTimeout(function() {
  18. $lib.emit("ems-app-start", $lib);
  19. }, 2500)