Mercurial > lada > lada-client
changeset 895:2b7bcb778f0a
Jsduck debug
author | Dustin Demuth <dustin@intevation.de> |
---|---|
date | Thu, 23 Jul 2015 17:14:05 +0200 |
parents | a1d72228af00 |
children | 237bca579fc7 |
files | app/controller/FilterResult.js app/controller/form/Location.js app/view/panel/Map.js app/view/widget/ProbenintervallSlider.js |
diffstat | 4 files changed, 11 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/app/controller/FilterResult.js Thu Jul 23 17:04:46 2015 +0200 +++ b/app/controller/FilterResult.js Thu Jul 23 17:14:05 2015 +0200 @@ -48,7 +48,7 @@ * {@link Lada.view.grid.FilterResult} * was double-clicked. * The function opens a {@link Lada.view.window.ProbeEdit} - * or a {@link Lada.view.window.MessprogrammEdit}. + * or a {@link Lada.view.window.Messprogramm}. * To determine which window has to be opened, the function * analyse the records modelname. */ @@ -91,7 +91,7 @@ /** * This function opens a new window to create a Probe - * {@link Lada.view.window.MessprogrammCreate} + * {@link Lada.view.window.Messprogramm} */ addMessprogrammItem: function() { var win = Ext.create('Lada.view.window.Messprogramm');
--- a/app/controller/form/Location.js Thu Jul 23 17:04:46 2015 +0200 +++ b/app/controller/form/Location.js Thu Jul 23 17:14:05 2015 +0200 @@ -123,7 +123,7 @@ * This function updates the Latitude (heigth-value / y-value) of a feature * (geospatial object). The feature can be a marker in the map * @param {Ext.form.field.Field} field the Ext.field which was altered - * @param {} nValue the new Latitude as WGS84 in decimaldegrees + * @param nValue the new Latitude as WGS84 in decimaldegrees */ updateFeatureLatitude: function(field, nValue) { var layer = field.up('window').down('map').selectControl.layer; @@ -139,7 +139,7 @@ * This function updates the Longitude (right-value / x-value) of a feature * (geospatial object). The feature can be a marker in the map * @param {Ext.form.field.Field} field the Ext.field which was altered - * @param {} nValue the new Longitude as WGS84 in decimaldegrees + * @param nValue the new Longitude as WGS84 in decimaldegrees */ updateFeatureLongitude: function(field, nValue) { var layer = field.up('window').down('map').selectControl.layer;
--- a/app/view/panel/Map.js Thu Jul 23 17:04:46 2015 +0200 +++ b/app/view/panel/Map.js Thu Jul 23 17:14:05 2015 +0200 @@ -29,9 +29,6 @@ projection: new OpenLayers.Projection('EPSG:4326') }, - /** - * Array of OpenLayers.Layer objects. - */ /** * @private @@ -70,6 +67,10 @@ this.callParent(arguments); }, + /** + * Initialise the Data and Create an + * Array of OpenLayers.Layer objects. + */ initData: function() { var me = this; this.locationFeatures = [];
--- a/app/view/widget/ProbenintervallSlider.js Thu Jul 23 17:04:46 2015 +0200 +++ b/app/view/widget/ProbenintervallSlider.js Thu Jul 23 17:14:05 2015 +0200 @@ -1,3 +1,6 @@ +/** + * This is a slider widget to display Probenintervalle + */ Ext.define('Lada.view.widget.ProbenintervallSlider', { extend: 'Ext.slider.Multi', alias: 'widget.probenintervallslider',