From 7c4f5003615c6a5cef1a806ee9bcf0e2fdd944f6 Mon Sep 17 00:00:00 2001 From: Paulo Gustavo Veiga Date: Wed, 19 Sep 2012 23:12:47 -0300 Subject: [PATCH] - Fix error on IE9 on sharing ... --- wise-webapp/src/main/webapp/jsp/mindmapShare.jsp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wise-webapp/src/main/webapp/jsp/mindmapShare.jsp b/wise-webapp/src/main/webapp/jsp/mindmapShare.jsp index df1564f0..dafe94df 100644 --- a/wise-webapp/src/main/webapp/jsp/mindmapShare.jsp +++ b/wise-webapp/src/main/webapp/jsp/mindmapShare.jsp @@ -132,7 +132,7 @@ function addCollaboration(email, role, changeType) { // Register change role event ... var rowElem = $("#collabsTable tr:last"); - $(rowElem.find(".dropdown-menu a").click(function () { + $(rowElem.find(".dropdown-menu a").click(function (event) { reportError(null); var role = onClickShare(this); rowElem.attr('data-role', role); @@ -175,7 +175,7 @@ $(function () { return a.role <= b.role; }); - // Add all the colums in the table ... + // Add all the columns in the table ... for (var i = 0; i < collabs.length; i++) { var collab = collabs[i]; addCollaboration(collab.email, collab.role);