From bd8137ea97bb48297679eade1f10e1086357062e Mon Sep 17 00:00:00 2001 From: Sam Georges Date: Thu, 3 Jul 2014 18:34:53 +1000 Subject: [PATCH] Fix to rowlink, hide the link instead of trashing it from the DOM --- modules/backend/assets/js/october.rowlink.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/backend/assets/js/october.rowlink.js b/modules/backend/assets/js/october.rowlink.js index 4ebcef975..4ec11e93f 100644 --- a/modules/backend/assets/js/october.rowlink.js +++ b/modules/backend/assets/js/october.rowlink.js @@ -44,7 +44,7 @@ }) $(this).addClass(options.linkedClass) - link.replaceWith(link.html()) + link.hide().after(link.html()) }) }