Mercurial > lada > lada-client
comparison 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 |
comparison
equal
deleted
inserted
replaced
117:5ef91e9ac7b1 | 118:f2579cadaee8 |
---|---|
1 Ext.application({ | 1 Ext.application({ |
2 | |
3 // Name of the application. Do not change as this name is used in | |
4 // references! | |
2 name: 'Lada', | 5 name: 'Lada', |
6 | |
3 // Setting up translations. This is done using a ext-plgin which can be | 7 // Setting up translations. This is done using a ext-plgin which can be |
4 // found on https://github.com/elmasse/Ext.i18n.Bundle | 8 // found on https://github.com/elmasse/Ext.i18n.Bundle |
5 requires: ['Ext.i18n.Bundle'], | 9 requires: ['Ext.i18n.Bundle'], |
6 bundle: { | 10 bundle: { |
7 bundle: 'Lada', | 11 bundle: 'Lada', |
8 lang: 'de-DE', | 12 lang: 'de-DE', |
9 path: 'resources', | 13 path: 'resources', |
10 noCache: true | 14 noCache: true |
11 }, | 15 }, |
16 | |
12 // Setting this variable to true triggers loading the Viewport.js | 17 // Setting this variable to true triggers loading the Viewport.js |
13 // file which sets ob the viewport. | 18 // file which sets ob the viewport. |
14 autoCreateViewport: true, | 19 autoCreateViewport: true, |
15 | |
16 | 20 |
17 // Start the application. | 21 // Start the application. |
18 launch: function() { | 22 launch: function() { |
19 console.log('Launching the application'); | 23 console.log('Launching the application'); |
20 }, | 24 }, |