mirror of
https://github.com/serghey-rodin/vesta.git
synced 2026-02-04 05:29:29 +01:00
20 lines
314 B
JavaScript
20 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);
|
|
}
|
|
});
|
|
|