count.js: support data-page-id paths

Closes https://gitlab.com/commento/commento/issues/255
This commit is contained in:
Adhityaa Chandrasekar 2020-01-02 14:02:36 -08:00
parent 15022ba3a0
commit 166599a2c8

View File

@ -38,7 +38,7 @@
var scripts = tags("script")
for (var i = 0; i < scripts.length; i++) {
if (scripts[i].src.match(/\/js\/count\.js$/)) {
var customCommentsText = attrGet(scripts[i], "data-custom-text");
var customCommentsText = attrGet(scripts[i], "data-custom-text");
if (customCommentsText !== undefined) {
commentsText = eval(customCommentsText);
}
@ -61,12 +61,15 @@
href = href.replace(/^.*\/\/[^\/]+/, "");
if (href.endsWith("#commento")) {
var path = href.substr(0, href.indexOf("#commento"));
if (path.startsWith(parent.location.host)) {
path = path.substr(parent.location.host.length);
var pageId = attrGet(as[i], "data-page-id");
if (pageId === undefined) {
pageId = href.substr(0, href.indexOf("#commento"));
if (pageId.startsWith(parent.location.host)) {
pageId = pageId.substr(parent.location.host.length);
}
}
paths.push(path);
paths.push(pageId);
doms.push(as[i]);
}
}