Commit 8af8e6fd0fa34fd8f50b0e8ebbc0de2846dbad74
Exists in
master
and in
2 other branches
Merge branch 'master' into 'master'
agrego foca-botonera-lateral See merge request !13
Showing
4 changed files
Show diff stats
gulpfile.js
| ... | ... | @@ -43,7 +43,7 @@ gulp.task('uglify', ['templates'], function() { |
| 43 | 43 | gulp.dest(paths.tmp), |
| 44 | 44 | rename('foca-admin-seguimiento.min.js'), |
| 45 | 45 | uglify(), |
| 46 | - replace('"ngRoute","ui.bootstrap"', ''), | |
| 46 | + replace('"ngRoute","ui.bootstrap","focaBotoneraLateral"', ''), | |
| 47 | 47 | gulp.dest(paths.dist) |
| 48 | 48 | ] |
| 49 | 49 | ); |
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