Skip to content

Commit

Permalink
fix handling of Ctrl-Shift-Z
Browse files Browse the repository at this point in the history
  • Loading branch information
balpha committed Oct 9, 2012
1 parent 8872075 commit 67145a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Markdown.Editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@
var keyCode = event.charCode || event.keyCode;
var keyCodeChar = String.fromCharCode(keyCode);

switch (keyCodeChar) {
switch (keyCodeChar.toLowerCase()) {

case "y":
undoObj.redo();
Expand Down

0 comments on commit 67145a7

Please sign in to comment.