Change: keyboard shortcut
This commit is contained in:
parent
2ab5c67545
commit
e82faacbb2
|
@ -20,7 +20,6 @@ $(function ($) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
//Ctrl+Enter:投稿
|
//Ctrl+Enter:投稿
|
||||||
if (event.metaKey || event.ctrlKey && wv) {
|
if (event.metaKey || event.ctrlKey && wv) {
|
||||||
|
@ -36,14 +35,6 @@ $(function ($) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//Shift+Space:Markdownゼロ幅スペース
|
|
||||||
if (event.shiftKey) {
|
|
||||||
if (e.keyCode === 32) {
|
|
||||||
brInsert("");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
//Esc:消す
|
//Esc:消す
|
||||||
if (e.keyCode === 27 && wv) {
|
if (e.keyCode === 27 && wv) {
|
||||||
hide();
|
hide();
|
||||||
|
@ -54,14 +45,6 @@ $(function ($) {
|
||||||
location.href = "index.html";
|
location.href = "index.html";
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
//Ctrl+R:ランキング
|
|
||||||
if ((event.metaKey || event.ctrlKey) && wv) {
|
|
||||||
if (e.keyCode === 82) {
|
|
||||||
if (localStorage.getItem("kirishima")) {
|
|
||||||
window.open("https://astarte.thedesk.top");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
//Ctrl+Sift+C:全消し
|
//Ctrl+Sift+C:全消し
|
||||||
if (((event.metaKey || event.ctrlKey) && event.shiftKey) && wv) {
|
if (((event.metaKey || event.ctrlKey) && event.shiftKey) && wv) {
|
||||||
if (e.keyCode === 67) {
|
if (e.keyCode === 67) {
|
||||||
|
|
|
@ -448,8 +448,6 @@
|
||||||
以下Markdownに対応したインスタンスのみ。
|
以下Markdownに対応したインスタンスのみ。
|
||||||
<br>
|
<br>
|
||||||
<li>Ctrl+B/I/S/U:太字/斜字/取り消し/下線</li>
|
<li>Ctrl+B/I/S/U:太字/斜字/取り消し/下線</li>
|
||||||
<li>Shift+Enter:全角スペースを入れて改行</li>
|
|
||||||
<li>Shift+Space:ゼロ幅スペース</li>
|
|
||||||
以下アスタルテにログインしている場合のみ
|
以下アスタルテにログインしている場合のみ
|
||||||
<br>
|
<br>
|
||||||
<li>Ctrl+R:
|
<li>Ctrl+R:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user