Mercurial > lada > lada-client
view app/view/About.js @ 404:9caedffa5c7b
Added tag 0.5 for changeset e3e4adb00f32
author | Raimund Renkert <rrenkert@intevation.de> |
---|---|
date | Wed, 11 Sep 2013 11:16:13 +0200 |
parents | bcc7546c6366 |
children | f9bb1ecf6462 |
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 = "0.4 (rev. 348)"; var cver = "0.4 (rev. 394)"; this.buttons = [ { text: 'Abbrechen', scope: this, handler: this.close, } ]; this.items = [ { html: "<h1>Lada</h1>Server version: " + sver + "<br>Client version: " + cver } ]; this.callParent(); }, });