FIX: Revert tracking links in quotes

This commit is contained in:
Penar Musaraj 2019-04-29 10:30:04 -04:00
parent aef35faefc
commit 629ae7a5b7
1 changed files with 2 additions and 2 deletions

View File

@ -18,8 +18,8 @@ export function isValidLink($link) {
return false; return false;
} }
// Do not track links in elided part // Do not track links in quotes or in elided part
if ($link.parents(".elided").length !== 0) { if ($link.parents("aside.quote, .elided").length !== 0) {
return false; return false;
} }