diff --git a/src/js/controller.js b/src/js/controller.js index ba9d130..51d4b88 100644 --- a/src/js/controller.js +++ b/src/js/controller.js @@ -3,14 +3,14 @@ angular.module('focaCrearNotaPedido') ['$scope', '$uibModal', 'crearNotaPedidoService', 'focaModalService', function($scope, $uibModal, crearNotaPedidoService, focaModalService) { $scope.botonera = [ - {texto: 'moneda', accion: function(){console.log('moneda');}}, + {texto: 'moneda', accion: function() {console.log('moneda');}}, { texto: 'precios y condiciones', - accion: function(){$scope.abrirModalListaPrecio();}}, - {texto: 'flete', accion: function(){$scope.abrirModalFlete();}}, - {texto: 'bomba', accion: function(){}}, - {texto: 'detalle', accion: function(){}}, - {texto: 'totales', accion: function(){}} + accion: function() {$scope.abrirModalListaPrecio();}}, + {texto: 'flete', accion: function() {$scope.abrirModalFlete();}}, + {texto: 'bomba', accion: function() {}}, + {texto: 'detalle', accion: function() {}}, + {texto: 'totales', accion: function() {}} ]; $scope.show = false; $scope.cargando = true;