Mercurial > lada > lada-client
diff app/controller/Zusatzwerte.js @ 499:8b4ec61c5752
Removed most log messages to make the application less verbose.
author | Raimund Renkert <raimund.renkert@intevation.de> |
---|---|
date | Thu, 06 Nov 2014 11:12:21 +0100 |
parents | 7c0653e8d9f7 |
children | a12c9c97d3cb |
line wrap: on
line diff
--- a/app/controller/Zusatzwerte.js Thu Nov 06 10:59:03 2014 +0100 +++ b/app/controller/Zusatzwerte.js Thu Nov 06 11:12:21 2014 +0100 @@ -17,7 +17,6 @@ ], init: function() { - console.log('Initialising the Zusatzwerte controller'); this.callParent(arguments); }, @@ -47,13 +46,11 @@ }, saveItem: function(button) { - console.log('Saving new Zusatzwert for Probe ' + button.probeId); var form = button.up('window').down('form'); form.commit(); }, addItem: function(button) { - console.log('Adding new Zusatzwert for Probe' + button.probeId); var zusatzwert = Ext.create('Lada.model.Zusatzwert'); zusatzwert.set('probeId', button.probeId); Ext.widget('zusatzwertecreate', { @@ -62,7 +59,6 @@ }, editItem: function(grid, record) { - console.log('Editing Zusatzwert'); record.getAuthInfo(this.initEditWindow); },