blob: 83a1c5a9f4c1e72d60f98f0b75feafe2b0d247f3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
jQuery(function ($) {
$("*[data-webmention-count]").each(function (i, e) {
$.getJSON(
"https://webmention.io/api/count",
{
target: $(e).data("url"),
},
function (data) {
$(e).text(data.count + " mentions");
}
);
});
});
|