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