Browse Source
keyboard shortcut to switch to markdown
pull/96/head
Aaron Parecki
7 years ago
No known key found for this signature in database
GPG Key ID: 276C2817346D6056
1 changed files with
10 additions and
5 deletions
-
views/new-post.php
|
@ -446,11 +446,16 @@ $(function(){ |
|
|
saveNoteState(); |
|
|
saveNoteState(); |
|
|
}); |
|
|
}); |
|
|
|
|
|
|
|
|
// Easter egg: press ctrl+shift+c to reveal a content type selection
|
|
|
|
|
|
$(document).bind('keydown', function(e){ |
|
|
$(document).bind('keydown', function(e){ |
|
|
|
|
|
// Easter egg: press ctrl+shift+c to reveal a content type selection
|
|
|
if(e.keyCode == 67 && e.ctrlKey && e.shiftKey) { |
|
|
if(e.keyCode == 67 && e.ctrlKey && e.shiftKey) { |
|
|
$("#content-type-selection").removeClass("hidden"); |
|
|
$("#content-type-selection").removeClass("hidden"); |
|
|
} |
|
|
} |
|
|
|
|
|
// Easter egg: press ctrl+shift+m to switch to markdown
|
|
|
|
|
|
if(e.keyCode == 77 && e.ctrlKey && e.shiftKey) { |
|
|
|
|
|
$("#content-type-selection select").val("text/markdown"); |
|
|
|
|
|
$("#content-type-selection").removeClass("hidden"); |
|
|
|
|
|
} |
|
|
}); |
|
|
}); |
|
|
|
|
|
|
|
|
}); |
|
|
}); |
|
|