Mercurial > lada > lada-client
view app/view/About.js @ 387:6952e5dc9861
Changed size of about window
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Fri, 30 Aug 2013 11:17:08 +0200 |
parents | 00bf2d4f3bd1 |
children | 9591ca90d58d |
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 = "tests" var cver = "testc" this.buttons = [ { text: 'Abbrechen', scope: this, handler: this.close, } ]; this.items = [ { html: "<h1>Lada</h1>Server version: " + sver + "<br>Client version: " + cver } ]; this.callParent(); }, });