From b0364658ec8b0d5895a5c5ee81b5090816d213d0 Mon Sep 17 00:00:00 2001 From: Jordan Bates Date: Wed, 24 Apr 2013 04:53:58 -0700 Subject: [PATCH] Don't use do --- src/features/misc/keybinds.coffee | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/features/misc/keybinds.coffee b/src/features/misc/keybinds.coffee index 58f832d72..118100ffa 100644 --- a/src/features/misc/keybinds.coffee +++ b/src/features/misc/keybinds.coffee @@ -51,7 +51,7 @@ Keybinds = return if target.nodeName isnt 'TEXTAREA' Keybinds.tags 'math', target when Conf['Toggle sage'] - do Keybinds.sage if QR.nodes + Keybinds.sage() if QR.nodes when Conf['Submit QR'] QR.submit() if QR.nodes and !QR.status() # Thread related @@ -66,8 +66,8 @@ Keybinds = Keybinds.img threadRoot, true when Conf['fappeTyme'] unless $('#menu.left') - do Header.menuButton.click - do FappeTyme.input.click + Header.menuButton.click() + FappeTyme.input.click() # Board Navigation when Conf['Front page'] window.location = "/#{g.BOARD}/0#delform"