view app/view/About.js @ 467:fa2a7a37a248

Set versions in about dialog to 1.0 for client and server.
author Torsten Irländer <torsten.irlaender@intevation.de>
date Tue, 14 Jan 2014 12:28:49 +0100
parents 759828c533f5
children debfcc7713e3
line wrap: on
line source
/*
 * Window to edit a Probe
 */
Ext.define('Lada.view.About', {
    extend: 'Ext.window.Window',
    alias: 'widget.about',

    title: 'Lada Information',
    // Make size of the dialog dependend of the available space.
    // TODO: Handle resizing the browser window.
    width: 200,
    height: 200,
    autoShow: true,
    autoScroll: true,
    modal: true,
    layout: "fit",

    initComponent: function() {
        var sver = "1.0";
        var cver = "1.0";
        this.buttons = [
            {
                text: 'Abbrechen',
                scope: this,
                handler: this.close
            }
        ];
        this.items = [ 
            { html: "<h1>Lada</h1>Server version: " + sver + "<br>Client version: " + cver }
        ];
        this.callParent();
    }
});

http://lada.wald.intevation.org