Mercurial > lada > lada-client
view app.js @ 118:f2579cadaee8 tag-refactor
Formatting
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Fri, 21 Jun 2013 10:15:09 +0200 |
parents | 5ef91e9ac7b1 |
children | 19eab475bbe5 |
line wrap: on
line source
Ext.application({ // Name of the application. Do not change as this name is used in // references! name: 'Lada', // Setting up translations. This is done using a ext-plgin which can be // found on https://github.com/elmasse/Ext.i18n.Bundle requires: ['Ext.i18n.Bundle'], bundle: { bundle: 'Lada', lang: 'de-DE', path: 'resources', noCache: true }, // Setting this variable to true triggers loading the Viewport.js // file which sets ob the viewport. autoCreateViewport: true, // Start the application. launch: function() { console.log('Launching the application'); }, // Define the controllers of the application. They will be initialized // first before the application "launch" function is called. controllers: [ 'Proben', 'Kommentare', 'Sql', 'Zusatzwerte', 'Orte', 'Messungen' ] });