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