mirror of
https://github.com/serghey-rodin/vesta.git
synced 2026-07-29 17:00:40 +02:00
18 lines
325 B
JavaScript
18 lines
325 B
JavaScript
$(document).ready(function(){
|
|
try{
|
|
App.Utils.detectBrowser();
|
|
App.Env.world = 'CRON';
|
|
App.Pages.init();
|
|
App.Ref.init();
|
|
|
|
//App.View.start();
|
|
App.Core.listen();
|
|
App.Core.initMenu();
|
|
App.Helpers.liveValidate();
|
|
|
|
}catch(e){
|
|
fb.error(e);
|
|
}
|
|
});
|
|
|