Skip to content

Commit

Permalink
Changed Ctrl+T to Ctrl+Q for blockquote. For some reason SO doesn't p…
Browse files Browse the repository at this point in the history
…revent the default action even though this works fine on my test page.
  • Loading branch information
derobins committed Feb 7, 2009
1 parent ffe4a62 commit f6d2b63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wmd.js
Expand Up @@ -953,7 +953,7 @@ Attacklab.wmdBase = function(){
var quoteButton = document.createElement("li");
quoteButton.className = "wmd-button";
quoteButton.id = "wmd-quote-button";
quoteButton.title = "Blockquote <blockquote> Ctrl+T";
quoteButton.title = "Blockquote <blockquote> Ctrl+Q";
quoteButton.XShift = "-60px";
quoteButton.textOp = command.doBlockquote;
setupButton(quoteButton, true);
Expand Down Expand Up @@ -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":
Expand Down

0 comments on commit f6d2b63

Please sign in to comment.