From f6d2b63b97e05311b3f79a2350abd3d03af4105d Mon Sep 17 00:00:00 2001 From: derobins Date: Sat, 7 Feb 2009 02:28:59 -0600 Subject: [PATCH] Changed Ctrl+T to Ctrl+Q for blockquote. For some reason SO doesn't prevent the default action even though this works fine on my test page. --- wmd.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wmd.js b/wmd.js index 3ef995d..a5f0118 100644 --- a/wmd.js +++ b/wmd.js @@ -953,7 +953,7 @@ Attacklab.wmdBase = function(){ var quoteButton = document.createElement("li"); quoteButton.className = "wmd-button"; quoteButton.id = "wmd-quote-button"; - quoteButton.title = "Blockquote
Ctrl+T"; + quoteButton.title = "Blockquote
Ctrl+Q"; quoteButton.XShift = "-60px"; quoteButton.textOp = command.doBlockquote; setupButton(quoteButton, true); @@ -1115,7 +1115,7 @@ Attacklab.wmdBase = function(){ case "l": doClick(document.getElementById("wmd-link-button")); break; - case "t": + case "q": doClick(document.getElementById("wmd-quote-button")); break; case "k":