From ec77ec1e84b54aa7d0900f20d3c4563ebead6230 Mon Sep 17 00:00:00 2001 From: Zixaphir Date: Sat, 3 May 2014 03:35:33 -0700 Subject: [PATCH] QuoteYou > QuoteMarkers --- builds/4chan-X.user.js | 4 ++-- builds/crx/script.js | 4 ++-- src/Miscellaneous/Keybinds.coffee | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/builds/4chan-X.user.js b/builds/4chan-X.user.js index 532a32cc8..6100e2aaa 100644 --- a/builds/4chan-X.user.js +++ b/builds/4chan-X.user.js @@ -12332,10 +12332,10 @@ PostHiding.toggle(thread.OP); break; case Conf['Previous Post Quoting You']: - QuoteYou.cb.seek('preceding'); + QuoteMarkers.cb.seek('preceding'); break; case Conf['Next Post Quoting You']: - QuoteYou.cb.seek('following'); + QuoteMarkers.cb.seek('following'); break; default: return; diff --git a/builds/crx/script.js b/builds/crx/script.js index e912a6e1b..9792bbab5 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -12346,10 +12346,10 @@ PostHiding.toggle(thread.OP); break; case Conf['Previous Post Quoting You']: - QuoteYou.cb.seek('preceding'); + QuoteMarkers.cb.seek('preceding'); break; case Conf['Next Post Quoting You']: - QuoteYou.cb.seek('following'); + QuoteMarkers.cb.seek('following'); break; default: return; diff --git a/src/Miscellaneous/Keybinds.coffee b/src/Miscellaneous/Keybinds.coffee index 10c00f1ff..2522d6897 100755 --- a/src/Miscellaneous/Keybinds.coffee +++ b/src/Miscellaneous/Keybinds.coffee @@ -170,9 +170,9 @@ Keybinds = when Conf['Hide'] PostHiding.toggle thread.OP when Conf['Previous Post Quoting You'] - QuoteYou.cb.seek 'preceding' + QuoteMarkers.cb.seek 'preceding' when Conf['Next Post Quoting You'] - QuoteYou.cb.seek 'following' + QuoteMarkers.cb.seek 'following' else return e.preventDefault()