Commit 96cbb22b6d8f0ecf20ffff86c3f884d6876d090e

Authored by Marcelo Puebla
Exists in master

Merge branch 'develop' of git.focasoftware.com:npm/wrapper-demo

src/js/controller.js
... ... @@ -3,7 +3,8 @@ angular.module('appWrapperDemo')
3 3 '$scope',
4 4 '$rootScope',
5 5 '$timeout',
6   - function($scope, $rootScope, $timeout) {
  6 + '$uibModalStack',
  7 + function($scope, $rootScope, $timeout, $uibModalStack) {
7 8 $scope.usarTeclado = false;
8 9 $rootScope.$broadcast('usarTeclado', false);
9 10 $scope.mostrarTeclado = false;
... ... @@ -37,5 +38,10 @@ angular.module('appWrapperDemo')
37 38 }
38 39 }, 150);
39 40 });
  41 +
  42 + // Close all modals
  43 + $rootScope.$on('$locationChangeSuccess', function() {
  44 + $uibModalStack.dismissAll('close');
  45 + });
40 46 }
41 47 ]);
src/sass/_admin-seguimiento.scss
... ... @@ -12,3 +12,9 @@
12 12 }
13 13 }
14 14 }
  15 +
  16 +osm-direccion {
  17 + &>div {
  18 + height: 400px;
  19 + }
  20 +}