Commit 761f527859ade3e56a91b2ac9382d0c764fd3cc1
1 parent
cc633aa21d
Exists in
master
and in
1 other branch
agrego foca-botonera-lateral
Showing
3 changed files
with
12 additions
and
10 deletions
Show diff stats
src/js/app.js
src/js/controller.js
1 | 1 | angular.module('focaAdminSeguimiento') .controller('focaAdminSeguimientoController', [ |
2 | - '$scope', 'focaAdminSeguimientoService', '$location', '$routeParams', | |
3 | - function($scope, focaAdminSeguimientoService, $location, $routeParams) { | |
2 | + '$scope', '$timeout', 'focaAdminSeguimientoService', | |
3 | + 'focaBotoneraLateralService','$location', '$routeParams', | |
4 | + function($scope, $timeout, focaAdminSeguimientoService, | |
5 | + focaBotoneraLateralService, $location, $routeParams) { | |
6 | + | |
4 | 7 | $scope.actividad = ''; |
5 | 8 | |
6 | 9 | $scope.now = new Date(); |
... | ... | @@ -21,6 +24,11 @@ angular.module('focaAdminSeguimiento') .controller('focaAdminSeguimientoControll |
21 | 24 | $scope.marcadores = []; |
22 | 25 | getSeguimiento(); |
23 | 26 | |
27 | + //SETEO BOTONERA LATERAL | |
28 | + focaBotoneraLateralService.showSalir(true); | |
29 | + focaBotoneraLateralService.showPausar(false); | |
30 | + focaBotoneraLateralService.showGuardar(false); | |
31 | + | |
24 | 32 | $scope.general = function() { |
25 | 33 | $scope.idUsuario = 0; |
26 | 34 | getSeguimiento(); |
src/views/foca-admin-seguimiento.html