[Lada-commits] [PATCH 5 of 6] Jsduck debug

Wald Commits scm-commit at wald.intevation.org
Thu Jul 23 17:43:18 CEST 2015


# HG changeset patch
# User Dustin Demuth <dustin at intevation.de>
# Date 1437664445 -7200
# Node ID 2b7bcb778f0a4db9becd5924082fbd9ad8969bab
# Parent  a1d72228af00988f5f13837899f65e74f587204d
Jsduck debug

diff -r a1d72228af00 -r 2b7bcb778f0a app/controller/FilterResult.js
--- 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');
diff -r a1d72228af00 -r 2b7bcb778f0a app/controller/form/Location.js
--- 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;
diff -r a1d72228af00 -r 2b7bcb778f0a app/view/panel/Map.js
--- 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 = [];
diff -r a1d72228af00 -r 2b7bcb778f0a app/view/widget/ProbenintervallSlider.js
--- 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',


More information about the Lada-commits mailing list