1234567891011121314151617181920 |
- Ext.define('saas.Application', {
- extend: 'Ext.app.Application',
- name: 'saas',
- requires: [
- 'saas.*',
- 'Ext.window.MessageBox',
- 'Ext.window.Toast'
- ],
- mainView: 'saas.view.viewport.Viewport',
- defaultToken: 'main',
- launch: function(profile) {
- Ext.getBody().removeCls('launching');
- this.callParent([profile]);
- }
- });
|