js: add "ctrl+enter to submit form" shortcut.
Press Ctrl+Enter inside any text box to submit the form.
This commit is contained in:
@@ -67,9 +67,9 @@ Utility.dialog = function(title, html) {
|
||||
});
|
||||
}
|
||||
|
||||
Utility.keydown = function(keys, namespace, handler) {
|
||||
Utility.keydown = function(keys, namespace, handler, selector = document) {
|
||||
if (CurrentUser.data("enable-post-navigation")) {
|
||||
$(document).on("keydown.danbooru." + namespace, null, keys, handler);
|
||||
$(selector).on("keydown.danbooru." + namespace, null, keys, handler);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user