-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
24 lines (21 loc) · 813 Bytes
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
* This file is responsible for launching the application. Application logic should be
* placed in the Admin.Application class.
*/
Ext.application({
name: 'Admin',
extend: 'Admin.Application',
// Simply require all classes in the application. This is sufficient to ensure
// that all Admin classes will be included in the application build. If classes
// have specific requirements on each other, you may need to still require them
// explicitly.
//
requires: [
'Admin.*'
]
// The name of the initial view to create. With the classic toolkit this class
// will gain a "viewport" plugin if it does not extend Ext.Viewport. With the
// modern toolkit, the main view will be added to the Viewport.
//
//mainView: 'Admin.view.main.Viewport'
});