Commit b04000db authored by Pedro Eduardo Trujillo's avatar Pedro Eduardo Trujillo
Browse files

Corrige enlace a datos desde widgets de mapa

Agrega importación perdida y añade enlace a anchor de widget de series
temporales.

Actualiza submódulo.
parent 173f9d46
Loading
Loading
Loading
Loading
Compare 3a3fdf71 to ba692999
Original line number Diff line number Diff line
Subproject commit 3a3fdf7122387824cfd4467af083b7593fe01b8b
Subproject commit ba692999dcc6b01277a98218480bd46f966fd4b8
+6 −2
Original line number Diff line number Diff line
@@ -3,6 +3,7 @@ define([
	, 'dojo/_base/declare'
	, 'dojo/_base/lang'
	, 'dojo/aspect'
	, 'dojo/query'
	, 'src/redmicConfig'
	, 'templates/ObservationStationPopup'
	, 'templates/ObservationStationList'
@@ -11,6 +12,7 @@ define([
	, declare
	, lang
	, aspect
	, query
	, redmicConfig
	, TemplatePopup
	, TemplateList
@@ -28,7 +30,8 @@ define([
				},
				target: redmicConfig.services.activity,
				templateTargetChange: redmicConfig.services.activityObservationSeriesStations,
				_activeRadius: false
				_activeRadius: false,
				_showObservationsButtonClass: 'showObservations'
			};

			lang.mixin(this, this.config, args);
@@ -49,6 +52,7 @@ define([
										icon: 'fa-database',
										btnId: 'showObservations',
										returnItem: true,
										href: '#activityFixedObservationSeriesList',
										title: this.i18n.observations
									}]
								}
@@ -85,7 +89,7 @@ define([
				return;
			}

			var showChartsNode = query('.' + this._showChartsButtonClass, popupNode)[0];
			var showChartsNode = query('.' + this._showObservationsButtonClass, popupNode)[0];

			if (!showChartsNode) {
				return;