fix: don't use # for previews

isekai-main
Barış Soner Uşaklı 3 years ago
parent 8c67031609
commit 5a0efd2d42

@ -201,10 +201,11 @@ define('forum/topic', [
}
const href = link.attr('href');
const validHref = href && href !== '#';
const pathname = utils.urlToLocation(href).pathname;
$('#post-tooltip').remove();
const postMatch = pathname && pathname.match(/\/post\/([\d]+)/);
const topicMatch = pathname && pathname.match(/\/topic\/([\d]+)/);
const postMatch = validHref && pathname && pathname.match(/\/post\/([\d]+)/);
const topicMatch = validHref && pathname && pathname.match(/\/topic\/([\d]+)/);
if (postMatch) {
const pid = postMatch[1];
if (parseInt(link.parents('[component="post"]').attr('data-pid'), 10) === parseInt(pid, 10)) {

Loading…
Cancel
Save