From 97f7cca2b1690d41159ef9c92a521850ae1ff968 Mon Sep 17 00:00:00 2001 From: Zixaphir Date: Fri, 9 Aug 2013 01:08:39 -0700 Subject: [PATCH] Just a couple checks --- builds/4chan-X.user.js | 5 +++-- builds/crx/script.js | 5 +++-- src/Quotelinks/QuoteYou.coffee | 7 ++++--- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/builds/4chan-X.user.js b/builds/4chan-X.user.js index 971e68444..00e4422d2 100644 --- a/builds/4chan-X.user.js +++ b/builds/4chan-X.user.js @@ -4161,7 +4161,7 @@ QuoteYou = { init: function() { - if (g.VIEW === 'catalog' || !Conf['Mark Quotes of You'] || !Conf['Quick Reply']) { + if (!(g.VIEW !== 'catalog' && Conf['Mark Quotes of You'] && Conf['Quick Reply'])) { return; } if (Conf['Highlight Own Posts']) { @@ -4203,6 +4203,8 @@ seek: function(type) { var post, posts, result, str; + return unlses(Conf['Mark Quotes of You'] && Conf['Quick Reply']); + $.rmClass($('.highlight'), 'highlight'); if (!QuoteYou.lastRead) { if (!(post = QuoteYou.lastRead = $('.quotesYou'))) { new Notification('warning', 'No posts are currently quoting you, loser.', 20); @@ -4214,7 +4216,6 @@ } else { post = QuoteYou.lastRead; } - $.rmClass($('.highlight'), 'highlight'); str = "" + type + "::div[contains(@class,'quotesYou')]"; while (post = (result = $.X(str, post)).snapshotItem(type === 'preceding' ? result.snapshotLength - 1 : 0)) { if (QuoteYou.cb.scroll(post)) { diff --git a/builds/crx/script.js b/builds/crx/script.js index 8aecb2dd6..111dc57fc 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -4166,7 +4166,7 @@ QuoteYou = { init: function() { - if (g.VIEW === 'catalog' || !Conf['Mark Quotes of You'] || !Conf['Quick Reply']) { + if (!(g.VIEW !== 'catalog' && Conf['Mark Quotes of You'] && Conf['Quick Reply'])) { return; } if (Conf['Highlight Own Posts']) { @@ -4208,6 +4208,8 @@ seek: function(type) { var post, posts, result, str; + return unlses(Conf['Mark Quotes of You'] && Conf['Quick Reply']); + $.rmClass($('.highlight'), 'highlight'); if (!QuoteYou.lastRead) { if (!(post = QuoteYou.lastRead = $('.quotesYou'))) { new Notification('warning', 'No posts are currently quoting you, loser.', 20); @@ -4219,7 +4221,6 @@ } else { post = QuoteYou.lastRead; } - $.rmClass($('.highlight'), 'highlight'); str = "" + type + "::div[contains(@class,'quotesYou')]"; while (post = (result = $.X(str, post)).snapshotItem(type === 'preceding' ? result.snapshotLength - 1 : 0)) { if (QuoteYou.cb.scroll(post)) { diff --git a/src/Quotelinks/QuoteYou.coffee b/src/Quotelinks/QuoteYou.coffee index 3cf656e80..b71d37a99 100644 --- a/src/Quotelinks/QuoteYou.coffee +++ b/src/Quotelinks/QuoteYou.coffee @@ -1,6 +1,6 @@ QuoteYou = init: -> - return if g.VIEW is 'catalog' or !Conf['Mark Quotes of You'] or !Conf['Quick Reply'] + return unless g.VIEW isnt 'catalog' and Conf['Mark Quotes of You'] and Conf['Quick Reply'] if Conf['Highlight Own Posts'] $.addClass doc, 'highlight-own' @@ -33,6 +33,9 @@ QuoteYou = cb: seek: (type) -> + return unlses Conf['Mark Quotes of You'] and Conf['Quick Reply'] + $.rmClass $('.highlight'), 'highlight' + unless QuoteYou.lastRead unless post = QuoteYou.lastRead = $ '.quotesYou' new Notification 'warning', 'No posts are currently quoting you, loser.', 20 @@ -41,8 +44,6 @@ QuoteYou = else post = QuoteYou.lastRead - $.rmClass $('.highlight'), 'highlight' - str = "#{type}::div[contains(@class,'quotesYou')]" while post = (result = $.X(str, post)).snapshotItem(if type is 'preceding' then result.snapshotLength - 1 else 0)