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

Resuelve error detectado en tiempo de compilación

parent 3aca1674
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -28,13 +28,14 @@ define([
				var currentPropertyKey = propSplitted[0],
					nextPropertyKeys = propSplitted.slice(1).join('.');

				var currentPropertyValue;
				if (currentPropertyKey === '{i}') {
					for (var i = 0; i < item.length; i++) {
						var currentPropertyValue = item[i];
						currentPropertyValue = item[i];
						this._cleanProp(currentPropertyValue, nextPropertyKeys);
					}
				} else {
					var currentPropertyValue = item[currentPropertyKey];
					currentPropertyValue = item[currentPropertyKey];
					this._cleanProp(currentPropertyValue, nextPropertyKeys);
				}
			} else {