From 54c454ce01a1a8970d1d1a540a5560160eb68e34 Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Sat, 23 Nov 2019 02:33:10 +0100 Subject: [PATCH] =?utf8?q?=F0=9F=90=9B=20Fix=20a=20faulty=20attr->prop=20c?= =?utf8?q?hange?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/main/resources/static/javascript/sone.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/static/javascript/sone.js b/src/main/resources/static/javascript/sone.js index e62e8f6..035bd7c 100644 --- a/src/main/resources/static/javascript/sone.js +++ b/src/main/resources/static/javascript/sone.js @@ -1059,7 +1059,7 @@ function ajaxifyNotification(notification) { notification.find("form").submit(function() { return false; }); - notification.find("input[name=returnPage]").val($.url.prop("relative")); + notification.find("input[name=returnPage]").val($.url.attr("relative")); if (notification.find(".short-text").length > 0) { notification.find(".short-text").removeClass("hidden"); notification.find(".text").addClass("hidden"); -- 2.7.4