diff app/view/search/List.js @ 491:850ccfe5f3c4

Code style.
author Raimund Renkert <raimund.renkert@intevation.de>
date Fri, 31 Oct 2014 23:23:32 +0100
parents a07cf685606c
children 7c0653e8d9f7
line wrap: on
line diff
--- a/app/view/search/List.js	Fri Oct 31 21:28:31 2014 +0100
+++ b/app/view/search/List.js	Fri Oct 31 23:23:32 2014 +0100
@@ -16,37 +16,31 @@
     require: ['Ext.layout.container.Column'],
     initComponent: function() {
         this.layout = 'column',
-        this.items = [
-            {
-                id: 'search',
-                xtype: 'combobox',
-                editable: false,
-                store: 'Queries',
-                displayField:'name',
-                valueField:'id',
-                emptyText:'Wählen Sie eine Abfrage'
-            },
-            {
-                xtype: 'panel',
-                maxWidth: '500',
-                border: false,
-                margin: '0 10',
-                items: [
-                    {
-                        id: 'sqldesc',
-                        xtype: 'displayfield',
-                        fieldLabel: 'Beschreibung',
-                        value: '-/-'
-                    },
-                    {
-                        id: 'sqlquery',
-                        xtype: 'displayfield',
-                        fieldLabel: 'Abfrage',
-                        value: '-/-'
-                    }
-                ]
-            }
-        ];
+        this.items = [{
+            id: 'search',
+            xtype: 'combobox',
+            editable: false,
+            store: 'Queries',
+            displayField:'name',
+            valueField:'id',
+            emptyText:'Wählen Sie eine Abfrage'
+        }, {
+            xtype: 'panel',
+            maxWidth: '500',
+            border: false,
+            margin: '0 10',
+            items: [{
+                id: 'sqldesc',
+                xtype: 'displayfield',
+                fieldLabel: 'Beschreibung',
+                value: '-/-'
+            }, {
+                id: 'sqlquery',
+                xtype: 'displayfield',
+                fieldLabel: 'Abfrage',
+                value: '-/-'
+            }]
+        }];
         this.callParent(arguments);
     }
 });

http://lada.wald.intevation.org