From: David ‘Bombe’ Roden Date: Sat, 23 Nov 2019 01:33:10 +0000 (+0100) Subject: 🐛 Fix a faulty attr->prop change X-Git-Tag: v81^2~27^2~3 X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=commitdiff_plain;h=54c454ce01a1a8970d1d1a540a5560160eb68e34 🐛 Fix a faulty attr->prop change --- 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");