Commit b800da6f7e00da30bc0d30c60b884c0374183456

Authored by Eric Fernandez
1 parent a3a220dda5
Exists in master and in 1 other branch develop

espacios

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
src/js/controller.js
... ... @@ -153,9 +153,9 @@ angular.module('focaModalDetalleCisternas')
153 153 $scope.autoCompletar();
154 154 $scope.actualizarArticulo();
155 155 };
156   - $scope.actualizarArticulo = function () {
  156 + $scope.actualizarArticulo = function() {
157 157 $scope.articuloSeleccionado.cantidadCargada = 0;
158   - for (var i = 0; i < $scope.aCargar.length; i++) {
  158 + for(var i = 0; i < $scope.aCargar.length; i++) {
159 159 $scope.articuloSeleccionado.cantidadCargada +=
160 160 parseFloat($scope.aCargar[i]) || 0;
161 161 }