| 123456789101112131415 |
- /*
- * This file launches the application by asking Ext JS to create
- * and launch() the Application class.
- */
- Ext.application({
- extend: 'uas.Application',
- name: 'uas',
- requires: [
- // This will automatically load all classes in the uas namespace
- // so that application classes do not need to require each other.
- 'uas.*'
- ],
- });
|