Commit 37d6cbbe2f0ed018bcadf7fd166691ca08416434
Exists in
master
Merge branch 'master' into 'master'
Master See merge request !1
Showing
2 changed files
Show diff stats
package.json
... | ... | @@ -35,26 +35,26 @@ |
35 | 35 | "foca-directivas": "git+https://debo.suite.repo/modulos-npm/foca-directivas" |
36 | 36 | }, |
37 | 37 | "devDependencies": { |
38 | - "angular": "^1.7.5", | |
39 | - "angular-cookies": "^1.7.5", | |
40 | - "angular-route": "^1.7.5", | |
41 | - "bootstrap": "^4.1.3", | |
38 | + "angular": "1.7.5", | |
39 | + "angular-cookies": "1.7.5", | |
40 | + "angular-route": "1.7.5", | |
41 | + "bootstrap": "4.1.3", | |
42 | 42 | "foca-directivas": "git+https://debo.suite.repo/modulos-npm/foca-directivas", |
43 | - "font-awesome": "^4.7.0", | |
44 | - "gulp": "^3.9.1", | |
45 | - "gulp-angular-templatecache": "^2.2.2", | |
46 | - "gulp-clean": "^0.4.0", | |
47 | - "gulp-connect": "^5.6.1", | |
48 | - "gulp-htmlmin": "^5.0.1", | |
49 | - "gulp-jshint": "^2.1.0", | |
50 | - "gulp-rename": "^1.4.0", | |
51 | - "gulp-replace": "^1.0.0", | |
52 | - "gulp-sequence": "^1.0.0", | |
53 | - "gulp-uglify-es": "^1.0.4", | |
54 | - "jasmine-core": "^3.2.1", | |
55 | - "jquery": "^3.3.1", | |
56 | - "jshint": "^2.9.6", | |
57 | - "pre-commit": "^1.2.2", | |
58 | - "pump": "^3.0.0" | |
43 | + "font-awesome": "4.7.0", | |
44 | + "gulp": "3.9.1", | |
45 | + "gulp-angular-templatecache": "2.2.5", | |
46 | + "gulp-clean": "0.4.0", | |
47 | + "gulp-connect": "5.6.1", | |
48 | + "gulp-htmlmin": "5.0.1", | |
49 | + "gulp-jshint": "2.1.0", | |
50 | + "gulp-rename": "1.4.0", | |
51 | + "gulp-replace": "1.0.0", | |
52 | + "gulp-sequence": "1.0.0", | |
53 | + "gulp-uglify-es": "1.0.4", | |
54 | + "jasmine-core": "3.3.0", | |
55 | + "jquery": "3.3.1", | |
56 | + "jshint": "2.9.6", | |
57 | + "pre-commit": "1.2.2", | |
58 | + "pump": "3.0.0" | |
59 | 59 | } |
60 | 60 | } |
src/js/controller.js
... | ... | @@ -21,6 +21,9 @@ angular.module('focaLogin') |
21 | 21 | function($cookies, $location) { |
22 | 22 | $cookies.remove('idUsuario'); |
23 | 23 | $cookies.remove('token'); |
24 | + //Cierra ventana | |
25 | + window.open('', '_self', ''); //bug fix | |
26 | + window.close(); | |
24 | 27 | $location.path('/login'); |
25 | 28 | } |
26 | 29 | ]); |