From: David ‘Bombe’ Roden Date: Fri, 28 Jan 2011 05:39:07 +0000 (+0100) Subject: Convert links to posts on the current page to relative links. X-Git-Tag: 0.4.4^2~18 X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=commitdiff_plain;h=1371a5b8bd854d930aec684c696f2e4096e19e64 Convert links to posts on the current page to relative links. --- diff --git a/src/main/resources/static/javascript/sone.js b/src/main/resources/static/javascript/sone.js index 254c0c3..656e22c 100644 --- a/src/main/resources/static/javascript/sone.js +++ b/src/main/resources/static/javascript/sone.js @@ -742,6 +742,15 @@ function ajaxifyNotification(notification) { notification.find("form.mark-as-read button").click(function() { $.getJSON("markAsKnown.ajax", {"formPassword": getFormPassword(), "type": $(":input[name=type]", this.form).val(), "id": $(":input[name=id]", this.form).val()}); }); + notification.find("a[class^='link-']").each(function() { + linkElement = $(this); + if (linkElement.is("[href^='viewPost']")) { + id = linkElement.attr("class").substr(5); + if (hasPost(id)) { + linkElement.attr("href", "#post-" + id); + } + } + }); notification.find("form.dismiss button").click(function() { $.getJSON("dismissNotification.ajax", { "formPassword" : getFormPassword(), "notification" : notification.attr("id") }, function(data, textStatus) { /* dismiss in case of error, too. */