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

Añade asterisco de requerido a inputs de punto

Comentado en #17.
parent 0d306a33
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -263,7 +263,7 @@ define([

			var controlGroupNode = put(this.additionalPrevNode, "div.inputContainer.fWidth"),
				key = "spatialReference",
				label = this.i18n[key],
				label = this.i18n[key] + '*',
				placeholder = label + "PlaceHolder";

			this.filteringSelect = new FilteringSelect({
@@ -286,7 +286,7 @@ define([

			for (var i = this._coordinateProperties.length - 1; i >= 0; i--) {
				var key = this._coordinateProperties[i],
					label = this.i18n[key],
					label = this.i18n[key] + '*',
					controlGroupNode = put(this.mainNode, "div.inputContainer.fWidth");

				this._inputsInstances[key] = this._createInput(key);