Mercurial > lada > lada-client
changeset 422:f9bb1ecf6462
Removed trailing commas.
author | Raimund Renkert <rrenkert@intevation.de> |
---|---|
date | Thu, 07 Nov 2013 12:01:35 +0100 |
parents | f06a882ab776 |
children | f0f6ae3aae52 |
files | app/controller/Sql.js app/controller/Status.js app/model/Query.js app/store/Ortedetails.js app/store/Probenzusatzwerte.js app/store/Queries.js app/store/Staaten.js app/store/Verwaltungseinheiten.js app/view/About.js app/view/kommentare/Create.js app/view/messungen/Create.js app/view/messungen/Edit.js app/view/messwerte/Create.js app/view/mkommentare/Create.js app/view/orte/Create.js app/view/proben/Create.js app/view/proben/Edit.js app/view/proben/Import.js app/view/status/Create.js app/view/widgets/Datenbasis.js app/view/widgets/Messmethode.js app/view/widgets/Mst.js app/view/widgets/Netzbetreiber.js app/view/widgets/Uwb.js app/view/zusatzwerte/Create.js |
diffstat | 25 files changed, 30 insertions(+), 30 deletions(-) [+] |
line wrap: on
line diff
--- a/app/controller/Sql.js Thu Nov 07 11:59:40 2013 +0100 +++ b/app/controller/Sql.js Thu Nov 07 12:01:35 2013 +0100 @@ -10,7 +10,7 @@ 'Proben', // List of found Proben 'ProbenList', // List of found Proben 'Queries', - 'Info', + 'Info' ], requires: [ 'Lada.view.widgets.Mst',
--- a/app/controller/Status.js Thu Nov 07 11:59:40 2013 +0100 +++ b/app/controller/Status.js Thu Nov 07 12:01:35 2013 +0100 @@ -67,5 +67,5 @@ store.reload(); var win = form.up('window'); win.close(); - }, + } });
--- a/app/model/Query.js Thu Nov 07 11:59:40 2013 +0100 +++ b/app/model/Query.js Thu Nov 07 12:01:35 2013 +0100 @@ -9,7 +9,7 @@ {name: "description"}, {name: "sql"}, {name: "results"}, - {name: "filters"}, + {name: "filters"} ], proxy: { type: 'rest',
--- a/app/store/Ortedetails.js Thu Nov 07 11:59:40 2013 +0100 +++ b/app/store/Ortedetails.js Thu Nov 07 12:01:35 2013 +0100 @@ -5,7 +5,7 @@ extend: 'Ext.data.Store', model: 'Lada.model.Ortdetail', sorters: [{ - property: 'bezeichnung', + property: 'bezeichnung' }], autoLoad: true });
--- a/app/store/Probenzusatzwerte.js Thu Nov 07 11:59:40 2013 +0100 +++ b/app/store/Probenzusatzwerte.js Thu Nov 07 12:01:35 2013 +0100 @@ -4,7 +4,7 @@ Ext.define('Lada.store.Probenzusatzwerte', { extend: 'Ext.data.Store', sorters: [{ - property: 'beschreibung', + property: 'beschreibung' }], autoLoad: true, model: 'Lada.model.Probenzusatzwert'
--- a/app/store/Queries.js Thu Nov 07 11:59:40 2013 +0100 +++ b/app/store/Queries.js Thu Nov 07 12:01:35 2013 +0100 @@ -4,5 +4,5 @@ Ext.define('Lada.store.Queries', { extend: 'Ext.data.Store', autoLoad: true, - model: 'Lada.model.Query', + model: 'Lada.model.Query' });
--- a/app/store/Staaten.js Thu Nov 07 11:59:40 2013 +0100 +++ b/app/store/Staaten.js Thu Nov 07 12:01:35 2013 +0100 @@ -4,7 +4,7 @@ Ext.define('Lada.store.Staaten', { extend: 'Ext.data.Store', sorters: [{ - property: 'staat', + property: 'staat' }], model: 'Lada.model.Staat', autoLoad: true,
--- a/app/store/Verwaltungseinheiten.js Thu Nov 07 11:59:40 2013 +0100 +++ b/app/store/Verwaltungseinheiten.js Thu Nov 07 12:01:35 2013 +0100 @@ -5,7 +5,7 @@ extend: 'Ext.data.Store', fields: ['gemId', 'bezeichnung'], sorters: [{ - property: 'bezeichnung', + property: 'bezeichnung' }], autoLoad: false, proxy: {
--- a/app/view/About.js Thu Nov 07 11:59:40 2013 +0100 +++ b/app/view/About.js Thu Nov 07 12:01:35 2013 +0100 @@ -22,13 +22,13 @@ { text: 'Abbrechen', scope: this, - handler: this.close, + handler: this.close } ]; this.items = [ { html: "<h1>Lada</h1>Server version: " + sver + "<br>Client version: " + cver } ]; this.callParent(); - }, + } });
--- a/app/view/kommentare/Create.js Thu Nov 07 11:59:40 2013 +0100 +++ b/app/view/kommentare/Create.js Thu Nov 07 12:01:35 2013 +0100 @@ -25,7 +25,7 @@ { text: 'Abbrechen', scope: this, - handler: this.close, + handler: this.close } ]; var form = Ext.create('Lada.view.kommentare.CreateForm', this.initialConfig);
--- a/app/view/messungen/Create.js Thu Nov 07 11:59:40 2013 +0100 +++ b/app/view/messungen/Create.js Thu Nov 07 12:01:35 2013 +0100 @@ -25,7 +25,7 @@ { text: 'Abbrechen', scope: this, - handler: this.close, + handler: this.close } ]; var form = Ext.create('Lada.view.messungen.CreateForm', this.initialConfig);
--- a/app/view/messungen/Edit.js Thu Nov 07 11:59:40 2013 +0100 +++ b/app/view/messungen/Edit.js Thu Nov 07 12:01:35 2013 +0100 @@ -25,7 +25,7 @@ { text: 'Abbrechen', scope: this, - handler: this.close, + handler: this.close } ]; var form = Ext.create('Lada.view.messungen.EditForm', this.initialConfig);
--- a/app/view/messwerte/Create.js Thu Nov 07 11:59:40 2013 +0100 +++ b/app/view/messwerte/Create.js Thu Nov 07 12:01:35 2013 +0100 @@ -20,7 +20,7 @@ { text: 'Abbrechen', scope: this, - handler: this.close, + handler: this.close } ]; var form = Ext.create('Lada.view.messwerte.CreateForm', this.initialConfig);
--- a/app/view/mkommentare/Create.js Thu Nov 07 11:59:40 2013 +0100 +++ b/app/view/mkommentare/Create.js Thu Nov 07 12:01:35 2013 +0100 @@ -25,7 +25,7 @@ { text: 'Abbrechen', scope: this, - handler: this.close, + handler: this.close } ]; var form = Ext.create('Lada.view.mkommentare.CreateForm', this.initialConfig);
--- a/app/view/orte/Create.js Thu Nov 07 11:59:40 2013 +0100 +++ b/app/view/orte/Create.js Thu Nov 07 12:01:35 2013 +0100 @@ -23,7 +23,7 @@ { text: 'Abbrechen', scope: this, - handler: this.close, + handler: this.close } ]; var form = Ext.create('Lada.view.orte.CreateForm', this.initialConfig);
--- a/app/view/proben/Create.js Thu Nov 07 11:59:40 2013 +0100 +++ b/app/view/proben/Create.js Thu Nov 07 12:01:35 2013 +0100 @@ -17,12 +17,12 @@ this.buttons = [ { text: 'Speichern', - action: 'save', + action: 'save' }, { text: 'Abbrechen', scope: this, - handler: this.close, + handler: this.close } ]; var form = Ext.create('Lada.view.proben.CreateForm');
--- a/app/view/proben/Edit.js Thu Nov 07 11:59:40 2013 +0100 +++ b/app/view/proben/Edit.js Thu Nov 07 12:01:35 2013 +0100 @@ -18,12 +18,12 @@ this.buttons = [ { text: 'Speichern', - action: 'save', + action: 'save' }, { text: 'Abbrechen', scope: this, - handler: this.close, + handler: this.close } ]; // InitialConfig is the config object passed to the constructor on @@ -32,6 +32,6 @@ var form = Ext.create('Lada.view.proben.EditForm', this.initialConfig); this.items = [form]; this.callParent(); - }, + } });
--- a/app/view/proben/Import.js Thu Nov 07 11:59:40 2013 +0100 +++ b/app/view/proben/Import.js Thu Nov 07 12:01:35 2013 +0100 @@ -13,12 +13,12 @@ this.buttons = [ { text: 'Speichern', - action: 'save', + action: 'save' }, { text: 'Abbrechen', scope: this, - handler: this.close, + handler: this.close } ]; var form = Ext.create('Lada.view.proben.ImportForm');
--- a/app/view/status/Create.js Thu Nov 07 11:59:40 2013 +0100 +++ b/app/view/status/Create.js Thu Nov 07 12:01:35 2013 +0100 @@ -20,7 +20,7 @@ { text: 'Abbrechen', scope: this, - handler: this.close, + handler: this.close } ]; var form = Ext.create('Lada.view.status.CreateForm', this.initialConfig);
--- a/app/view/widgets/Datenbasis.js Thu Nov 07 11:59:40 2013 +0100 +++ b/app/view/widgets/Datenbasis.js Thu Nov 07 12:01:35 2013 +0100 @@ -1,7 +1,7 @@ var datenbasisStore = Ext.create('Ext.data.Store', { fields: ['datenbasisId', 'beschreibung', 'datenbasis'], sorters: [{ - property: 'datenbasis', + property: 'datenbasis' }], autoLoad: true, proxy: {
--- a/app/view/widgets/Messmethode.js Thu Nov 07 11:59:40 2013 +0100 +++ b/app/view/widgets/Messmethode.js Thu Nov 07 12:01:35 2013 +0100 @@ -1,7 +1,7 @@ var mmtStore = Ext.create('Ext.data.Store', { fields: ['mmtId', 'messmethhode'], sorters: [{ - property: 'mmtId', + property: 'mmtId' }], autoLoad: true, proxy: {
--- a/app/view/widgets/Mst.js Thu Nov 07 11:59:40 2013 +0100 +++ b/app/view/widgets/Mst.js Thu Nov 07 12:01:35 2013 +0100 @@ -1,7 +1,7 @@ var mstStore = Ext.create('Ext.data.Store', { fields: ['mstId', 'messStelle'], sorters: [{ - property: 'messStelle', + property: 'messStelle' }], autoLoad: true, proxy: {
--- a/app/view/widgets/Netzbetreiber.js Thu Nov 07 11:59:40 2013 +0100 +++ b/app/view/widgets/Netzbetreiber.js Thu Nov 07 12:01:35 2013 +0100 @@ -1,7 +1,7 @@ var netzbetreiberStore = Ext.create('Ext.data.Store', { fields: ['netzbetreiberId', 'netzbetreiber'], sorters: [{ - property: 'netzbetreiber', + property: 'netzbetreiber' }], autoLoad: true, proxy: {
--- a/app/view/widgets/Uwb.js Thu Nov 07 11:59:40 2013 +0100 +++ b/app/view/widgets/Uwb.js Thu Nov 07 12:01:35 2013 +0100 @@ -1,7 +1,7 @@ var uwbStore = Ext.create('Ext.data.Store', { fields: ['umwId', 'umweltBereich'], sorters: [{ - property: 'umwId', + property: 'umwId' }], autoLoad: true, proxy: {
--- a/app/view/zusatzwerte/Create.js Thu Nov 07 11:59:40 2013 +0100 +++ b/app/view/zusatzwerte/Create.js Thu Nov 07 12:01:35 2013 +0100 @@ -20,7 +20,7 @@ { text: 'Abbrechen', scope: this, - handler: this.close, + handler: this.close } ]; var form = Ext.create('Lada.view.zusatzwerte.CreateForm', this.initialConfig);