From 70cebe97fc39ec7ed5fac9f12235d80da8563905 Mon Sep 17 00:00:00 2001 From: Paulo Gustavo Veiga Date: Wed, 15 Aug 2012 00:51:10 -0300 Subject: [PATCH] - Fix IE 9 redirect issue to the editor ... --- wise-webapp/src/main/webapp/js/mindmapList.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wise-webapp/src/main/webapp/js/mindmapList.js b/wise-webapp/src/main/webapp/js/mindmapList.js index 8c7831cd..5811c975 100644 --- a/wise-webapp/src/main/webapp/js/mindmapList.js +++ b/wise-webapp/src/main/webapp/js/mindmapList.js @@ -263,7 +263,7 @@ $(function() { $("#newBtn").click( function() { $("#new-dialog-modal").dialogForm({ - redirect: "c/maps/{header.resourceId}/edit", + redirect: "/c/maps/{header.resourceId}/edit", url : "service/maps" }); }); @@ -283,7 +283,7 @@ $(function() { // Initialize dialog ... $("#duplicate-dialog-modal").dialogForm({ - redirect: "c/maps/{header.resourceId}/edit", + redirect: "/c/maps/{header.resourceId}/edit", url : "service/maps/" + mapId }); }