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

Limpia restos y revisa opciones de QueryOnMap

Mueve título usado siempre al propio módulo.

Aumenta el tamaño del popup de resultados omitiendo el ajuste de
dimensiones (usa el por defecto).

Limpia restos de importaciones no utilizadas actualmente.
parent f5a29353
Loading
Loading
Loading
Loading
+1 −8
Original line number Diff line number Diff line
@@ -3,8 +3,6 @@ define([
	, "app/designs/base/_Main"
	, "app/designs/mapWithSideContent/Controller"
	, "app/designs/mapWithSideContent/layout/MapAndContent"
	, "dijit/layout/LayoutContainer"
	, "dijit/layout/ContentPane"
	, "dojo/_base/declare"
	, "dojo/_base/lang"
	, "dojo/aspect"
@@ -28,8 +26,6 @@ define([
	, _Main
	, Controller
	, Layout
	, LayoutContainer
	, ContentPane
	, declare
	, lang
	, aspect
@@ -210,10 +206,7 @@ define([
			var QueryOnMapPopup = declare(QueryOnMap).extend(_ShowInPopup);
			this._queryOnMap = new QueryOnMapPopup({
				parentChannel: this.getChannel(),
				getMapChannel: getMapChannel,
				title: this.i18n.layersQueryResults,
				width: 5,
				height: "md"
				getMapChannel: getMapChannel
			});
		},

+1 −10
Original line number Diff line number Diff line
@@ -5,9 +5,6 @@ define([
	, "app/designs/base/_Main"
	, "app/designs/mapWithSideContent/Controller"
	, "app/designs/mapWithSideContent/layout/MapAndContentAndTopbar"
	, "dijit/layout/LayoutContainer"
	, "dijit/layout/ContentPane"
	, "dijit/layout/StackContainer"
	, "dojo/_base/declare"
	, "dojo/_base/lang"
	, "dojo/aspect"
@@ -46,9 +43,6 @@ define([
	, _Main
	, Controller
	, Layout
	, LayoutContainer
	, ContentPane
	, StackContainer
	, declare
	, lang
	, aspect
@@ -380,10 +374,7 @@ define([
			var QueryOnMapPopup = declare(QueryOnMap).extend(_ShowInPopup);
			this._queryOnMap = new QueryOnMapPopup({
				parentChannel: this.getChannel(),
				getMapChannel: getMapChannel,
				title: this.i18n.layersQueryResults,
				width: 5,
				height: "md"
				getMapChannel: getMapChannel
			});
		},

+1 −4
Original line number Diff line number Diff line
@@ -230,10 +230,7 @@ define([
			this._queryOnMap = new QueryOnMapPopup({
				parentChannel: this.getChannel(),
				getMapChannel: getMapChannel,
				typeGroupProperty: this.typeGroupProperty,
				title: this.i18n.layersQueryResults,
				width: 5,
				height: "md"
				typeGroupProperty: this.typeGroupProperty
			});
		},

+1 −4
Original line number Diff line number Diff line
@@ -54,10 +54,7 @@ define([
			}, this.atlasConfig || {}]);

			this.queryOnMapConfig = this._merge([{
				parentChannel: this.getChannel(),
				title: this.i18n.layersQueryResults,
				width: 5,
				height: "md"
				parentChannel: this.getChannel()
			}, this.queryOnMapConfig || {}]);
		},

+1 −4
Original line number Diff line number Diff line
@@ -220,10 +220,7 @@ define([
			var QueryOnMapPopup = declare(QueryOnMap).extend(_ShowInPopup);
			this._queryOnMap = new QueryOnMapPopup({
				parentChannel: this.getChannel(),
				getMapChannel: getMapChannel,
				title: this.i18n.layersQueryResults,
				width: 5,
				height: "md"
				getMapChannel: getMapChannel
			});
		}
	});
Loading