From 991adde2a7ab1dcd5820635bf7c82c4c0e197d47 Mon Sep 17 00:00:00 2001
From: Wiki-Team <wiki@zedat.fu-berlin.de>
Date: Fri, 25 Nov 2016 14:55:46 +0100
Subject: [PATCH] Item14218:EditRowPlugin, edit button works again in Internet
 Explorer

---
 pub/System/EditRowPlugin/erp.uncompressed.js | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/pub/System/EditRowPlugin/erp.uncompressed.js b/pub/System/EditRowPlugin/erp.uncompressed.js
index abb5585..a7a5294 100644
--- a/pub/System/EditRowPlugin/erp.uncompressed.js
+++ b/pub/System/EditRowPlugin/erp.uncompressed.js
@@ -686,4 +686,14 @@
     $(function() {
         instrument($(document));
     });
+
+    $(window).load(function() {
+        var btn  = $(".erp-edittable");
+        var link = $(btn).parent();
+        var href = $(link).attr("href");
+        $(btn).click(function() {
+            window.location.assign(href);
+        }); 
+    });
+
 })(jQuery);
-- 
2.7.3-zedat

