Commit 6e2db590a82d89a4c1e06606bb8b7c634550132b
1 parent
efdfb0b11e
Exists in
master
and in
1 other branch
alert foca
Showing
1 changed file
with
4 additions
and
3 deletions
Show diff stats
src/js/controller.js
... | ... | @@ -4,7 +4,8 @@ angular.module('focaAutorizarHojaRuta') |
4 | 4 | 'focaAutorizarHojaRutaService', |
5 | 5 | 'focaBotoneraLateralService', |
6 | 6 | '$filter', |
7 | - function($scope, focaAutorizarHojaRutaService, focaBotoneraLateralService, $filter) { | |
7 | + 'focaModalService', | |
8 | + function($scope, focaAutorizarHojaRutaService, focaBotoneraLateralService, $filter, focaModalService) { | |
8 | 9 | |
9 | 10 | $scope.now = Date.now(); |
10 | 11 | $scope.notasPedido = [] |
... | ... | @@ -35,11 +36,11 @@ angular.module('focaAutorizarHojaRuta') |
35 | 36 | } |
36 | 37 | |
37 | 38 | $scope.verNotaPedido = function(notaPedido) { |
38 | - alert('En desarrollo'); | |
39 | + focaModalService.alert('En desarrollo'); | |
39 | 40 | }; |
40 | 41 | |
41 | 42 | $scope.autorizar = function() { |
42 | - alert('En Desarrollo'); | |
43 | + focaModalService.alert('En Desarrollo'); | |
43 | 44 | }; |
44 | 45 | |
45 | 46 | }]); |