view app.js @ 7:54f95ab2f375

Moved title attribute
author Torsten Irländer <torsten.irlaender@intevation.de>
date Mon, 29 Apr 2013 16:16:00 +0200
parents 8e79bda4d55b
children 12a65c2c5dbf
line wrap: on
line source
Ext.application({
    name: 'Lada',
    autoCreateViewprt: true,
    launch: function() {
        // Start the application.
        console.log('Launching the application');
        Ext.create('Ext.container.Viewport', {
            layout: 'fit',
            title: 'Probenauswahlmaske',
            items: [
                {
                    xtype: 'sqllist'
                }
            ]
        });
    },
    // Define the controllers of the application. They will be initialized
    // first before the application "launch" function is called.
    controllers: [
        'Proben',
        'Sql'
    ]
});

http://lada.wald.intevation.org