Make Embedding work on Tinyboard-linkified links.

This commit is contained in:
ccd0 2018-01-24 00:52:32 -08:00
parent f8969bbc1e
commit b489f059a1

View File

@ -14,7 +14,7 @@ Linkify =
node: ->
return Embedding.events @ if @isClone
return unless Linkify.regString.test @info.comment
for link in $$ 'a', @nodes.comment when ImageHost.test link.hostname
for link in $$ 'a', @nodes.comment when ImageHost.test(link.hostname) or /\bnofollow\b/.test(link.rel)
$.addClass link, 'linkify'
Embedding.process link, @
links = Linkify.process @nodes.comment