Browse Source

keyboard shortcut to switch to markdown

pull/96/head
Aaron Parecki 6 years ago
parent
commit
dfa7811da3
No known key found for this signature in database GPG Key ID: 276C2817346D6056
1 changed files with 10 additions and 5 deletions
  1. +10
    -5
      views/new-post.php

+ 10
- 5
views/new-post.php View File

@ -12,7 +12,7 @@
</div> </div>
<div class="reply-context hidden"> <div class="reply-context hidden">
<div class="reply-author"> <div class="reply-author">
<img src="" width="48" class="author-img">
<img src="" width="48" class="author-img">
</div> </div>
<div class="reply-content"> <div class="reply-content">
<img src="" class="post-img hidden"> <img src="" class="post-img hidden">
@ -218,7 +218,7 @@
position: relative; position: relative;
overflow: hidden; overflow: hidden;
display: inline-block;
display: inline-block;
} }
#photo-previews img { #photo-previews img {
position: absolute; position: absolute;
@ -320,7 +320,7 @@ function restoreNoteState() {
} else { } else {
activateTokenField(); activateTokenField();
} }
});
});
} }
function expandReplySection() { function expandReplySection() {
@ -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");
}
}); });
}); });
@ -879,7 +884,7 @@ $(function(){
if($("#note_in_reply_to").val() != "") { if($("#note_in_reply_to").val() != "") {
$("#note_in_reply_to").change(); $("#note_in_reply_to").change();
} else { } else {
restoreNoteState();
restoreNoteState();
} }
}); });

Loading…
Cancel
Save