extjs-gpl
Version:
GPL licensed version of Sencha Ext JS
19 lines (16 loc) • 529 B
JavaScript
/*
* 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.*'
]
});