Fix Anonymizer not working on hovered posts.
This commit is contained in:
parent
fdaee4641e
commit
6c622fa7c2
@ -4198,7 +4198,10 @@
|
|||||||
FileInfo.node(post);
|
FileInfo.node(post);
|
||||||
}
|
}
|
||||||
if (Conf['Resurrect Quotes']) {
|
if (Conf['Resurrect Quotes']) {
|
||||||
return Quotify.node(post);
|
Quotify.node(post);
|
||||||
|
}
|
||||||
|
if (Conf['Anonymize']) {
|
||||||
|
return Anonymize.node(post);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
$.on(this, 'mousemove', UI.hover);
|
$.on(this, 'mousemove', UI.hover);
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
master
|
master
|
||||||
|
- noface
|
||||||
|
Fix Anonymize not working on hovered posts.
|
||||||
|
|
||||||
2.36.3
|
2.36.3
|
||||||
- Mayhem
|
- Mayhem
|
||||||
|
|||||||
@ -3448,6 +3448,8 @@ QuotePreview =
|
|||||||
FileInfo.node post
|
FileInfo.node post
|
||||||
if Conf['Resurrect Quotes']
|
if Conf['Resurrect Quotes']
|
||||||
Quotify.node post
|
Quotify.node post
|
||||||
|
if Conf['Anonymize']
|
||||||
|
Anonymize.node post
|
||||||
|
|
||||||
$.on @, 'mousemove', UI.hover
|
$.on @, 'mousemove', UI.hover
|
||||||
$.on @, 'mouseout click', QuotePreview.mouseout
|
$.on @, 'mouseout click', QuotePreview.mouseout
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user