From 1ca30f086693a126969b0c2355b3ab1f57681dfe Mon Sep 17 00:00:00 2001 From: Danilo Costa Viana Date: Mon, 17 Aug 2015 15:23:52 -0300 Subject: [PATCH] [FWK-231] Corrigido problema que fazia a tela de logon não redirecionar para a tela de título após um logon com sucesso se a tela de logon fosse a primeira a ser acessada após entrar no sistema. --- archetype/html-rest/src/main/resources/archetype-resources/src/main/webapp/js/lib/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archetype/html-rest/src/main/resources/archetype-resources/src/main/webapp/js/lib/app.js b/archetype/html-rest/src/main/resources/archetype-resources/src/main/webapp/js/lib/app.js index 2f0d437..4339af1 100644 --- a/archetype/html-rest/src/main/resources/archetype-resources/src/main/webapp/js/lib/app.js +++ b/archetype/html-rest/src/main/resources/archetype-resources/src/main/webapp/js/lib/app.js @@ -4,7 +4,7 @@ var App = { restoreSavedLocation : function() { var url = sessionStorage.getItem(this.savedLocationKey); - location.href = (url ? url : ""); + location.href = (url ? url : "index.html"); }, saveLocation : function(url) { -- libgit2 0.21.2