torsten@0: Ext.application({ torsten@0: name: 'Lada', torsten@10: // Setting this variable to true should trigger loading the Viewport.js torsten@10: // file which sets ob the viewport. But this does not happen. torsten@73: requires: ['Ext.i18n.Bundle'], torsten@73: bundle: { torsten@73: bundle: 'Lada', torsten@73: lang: 'de-DE', torsten@73: path: 'resources', torsten@73: noCache: true torsten@73: }, torsten@25: autoCreateViewport: true, torsten@0: launch: function() { torsten@0: // Start the application. torsten@2: console.log('Launching the application'); torsten@2: }, torsten@3: // Define the controllers of the application. They will be initialized torsten@3: // first before the application "launch" function is called. torsten@3: controllers: [ torsten@6: 'Proben', torsten@54: 'Kommentare', torsten@108: 'Sql', torsten@110: 'Zusatzwerte', torsten@109: 'Orte', torsten@108: 'Messungen' torsten@108: torsten@3: ] torsten@0: });