extjs-gpl
Version:
GPL licensed version of Sencha Ext JS
24 lines (18 loc) • 479 B
JavaScript
/**
* The main application class. An instance of this class is created by app.js when it
* calls Ext.application(). This is the ideal place to handle application launch and
* initialization details.
*/
Ext.define('Admin.Application', {
extend: 'Ext.app.Application',
name: 'Admin',
defaultToken : 'dashboard',
mainView: 'Admin.view.main.Main',
profiles: [
'Phone',
'Tablet'
],
stores: [
'NavigationTree'
]
});