This commit is contained in:
Zixaphir 2014-03-24 13:34:40 -07:00
parent 148edd3e33
commit 04f5f5a5fb
3 changed files with 6 additions and 6 deletions

View File

@ -5505,8 +5505,8 @@
cb: { cb: {
seek: function(type) { seek: function(type) {
var post; var post;
if (Conf['Mark Quotes of You'] && (post = QuotesYou.cb.findPost(type))) { if (Conf['Mark Quotes of You'] && (post = QuoteMarkers.cb.findPost(type))) {
return Quotesyou.cb.scroll(post); return QuoteMarkers.cb.scroll(post);
} }
}, },
findPost: function(type) { findPost: function(type) {

View File

@ -5559,8 +5559,8 @@
cb: { cb: {
seek: function(type) { seek: function(type) {
var post; var post;
if (Conf['Mark Quotes of You'] && (post = QuotesYou.cb.findPost(type))) { if (Conf['Mark Quotes of You'] && (post = QuoteMarkers.cb.findPost(type))) {
return Quotesyou.cb.scroll(post); return QuoteMarkers.cb.scroll(post);
} }
}, },
findPost: function(type) { findPost: function(type) {

View File

@ -48,8 +48,8 @@ QuoteMarkers =
cb: cb:
seek: (type) -> seek: (type) ->
if Conf['Mark Quotes of You'] and post = QuotesYou.cb.findPost type if Conf['Mark Quotes of You'] and post = QuoteMarkers.cb.findPost type
Quotesyou.cb.scroll post QuoteMarkers.cb.scroll post
findPost: (type) -> findPost: (type) ->
posts = $$ '.quotesYou' posts = $$ '.quotesYou'