# HG changeset patch # User Torsten Irländer # Date 1367238054 -7200 # Node ID 570373979387ccc4bb1102232de07092b81b3c1f # Parent af8d7217521db8cfa2db17c076ec52c18ce123a1 Added a simple panel to the application. diff -r af8d7217521d -r 570373979387 app.js --- a/app.js Mon Apr 29 14:20:07 2013 +0200 +++ b/app.js Mon Apr 29 14:20:54 2013 +0200 @@ -3,5 +3,16 @@ autoCreateViewprt: true, launch: function() { // Start the application. - } + console.log('Launching the application'); + Ext.create('Ext.container.Viewport', { + layout: 'fit', + items: [ + { + xtype: 'panel', + title: 'Probenauswahlmaske', + html: 'Probenliste wird hier angezeigt.' + } + ] + }); + }, });