Detect archive post linked to when link is of form '#q'.
This commit is contained in:
parent
58805277d8
commit
07b5b52a2c
@ -26,7 +26,7 @@ Quotify =
|
|||||||
return if link.hostname is 'boards.4chan.org'
|
return if link.hostname is 'boards.4chan.org'
|
||||||
boardID = m[1]
|
boardID = m[1]
|
||||||
threadID = m[2]
|
threadID = m[2]
|
||||||
postID = link.hash.match(/^#p?(\d+)$|$/)[1] or threadID
|
postID = link.hash.match(/^#[pq]?(\d+)$|$/)[1] or threadID
|
||||||
if Redirect.to 'post', {boardID, postID}
|
if Redirect.to 'post', {boardID, postID}
|
||||||
$.addClass link, 'quotelink'
|
$.addClass link, 'quotelink'
|
||||||
$.extend link.dataset, {boardID, threadID, postID}
|
$.extend link.dataset, {boardID, threadID, postID}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user