From 9f495f1e766e125cd597683370e715e34bd30836 Mon Sep 17 00:00:00 2001 From: Paulo Gustavo Veiga Date: Thu, 22 Nov 2012 00:30:49 -0300 Subject: [PATCH] Fix event error on firefox 1.6. --- wise-webapp/src/main/webapp/jsp/mindmapShare.jsp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/wise-webapp/src/main/webapp/jsp/mindmapShare.jsp b/wise-webapp/src/main/webapp/jsp/mindmapShare.jsp index 7b2a8a23..7668c532 100644 --- a/wise-webapp/src/main/webapp/jsp/mindmapShare.jsp +++ b/wise-webapp/src/main/webapp/jsp/mindmapShare.jsp @@ -239,13 +239,11 @@ $("#addBtn").click(function (event) { }); // Register change event ... -$("#shareRole a").click(function () { +$("#shareRole a").click(function (event) { var role = onClickShare(this); $(this).parent().attr('data-role', role); - event.stopPropagation(); event.preventDefault(); - return false; }); function isValidEmailAddress(emailAddress) {