app.js 369 B

123456789101112131415
  1. /*
  2. * This file launches the application by asking Ext JS to create
  3. * and launch() the Application class.
  4. */
  5. Ext.application({
  6. extend: 'uas.Application',
  7. name: 'uas',
  8. requires: [
  9. // This will automatically load all classes in the uas namespace
  10. // so that application classes do not need to require each other.
  11. 'uas.*'
  12. ],
  13. });