mirror of
https://github.com/myvesta/vesta
synced 2025-07-16 10:03:23 -07:00
19 lines
314 B
JavaScript
19 lines
314 B
JavaScript
$(document).ready(function(){
|
|
try{
|
|
App.Utils.detectBrowser();
|
|
|
|
App.Env.world = 'DNS';
|
|
App.Pages.init();
|
|
|
|
App.Ref.init();
|
|
|
|
//App.View.start();
|
|
App.Core.listen();
|
|
App.Core.initMenu();
|
|
App.Helpers.liveValidate();
|
|
|
|
}catch(e){
|
|
fb.error(e);
|
|
}
|
|
});
|
|
|