Merge branch 'master' of github.com:MayhemYDG/4chan-x

This commit is contained in:
Nicolas Stepien 2012-12-10 14:43:46 +01:00
commit 272add179f
3 changed files with 8 additions and 1 deletions

View File

@ -4221,7 +4221,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.
- Mayhem - Mayhem
Added catalog support: Added catalog support:
Sync thread hiding between index and catalog. Sync thread hiding between index and catalog.

View File

@ -3464,6 +3464,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