Fix Anonymizer not working on hovered posts.

This commit is contained in:
noface 2012-12-07 03:37:17 +01:00
parent fdaee4641e
commit 6c622fa7c2
3 changed files with 8 additions and 1 deletions

View File

@ -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);

View File

@ -1,4 +1,6 @@
master master
- noface
Fix Anonymize not working on hovered posts.
2.36.3 2.36.3
- Mayhem - Mayhem

View File

@ -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