mirror of
https://github.com/McShelby/hugo-theme-relearn
synced 2025-04-30 16:54:49 +08:00
Preventing left/right arrow key navigation in textareas
This commit is contained in:
parent
7f5e927f0c
commit
ef2ab7ad8a
@ -223,7 +223,7 @@ jQuery(document).ready(function() {
|
||||
});
|
||||
});
|
||||
|
||||
jQuery('input').keydown(function (e) {
|
||||
jQuery('input, textarea').keydown(function (e) {
|
||||
// left and right arrow keys
|
||||
if (e.which == '37' || e.which == '39') {
|
||||
e.stopPropagation();
|
||||
|
Loading…
x
Reference in New Issue
Block a user