1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-27 12:05:06 +02:00

prefs: ignore hotkeys while in TEXTAREA

This commit is contained in:
Andrew Dolgov 2012-03-11 08:54:14 +04:00
parent 7e37b56d2a
commit e33b0b80b2

View File

@ -970,7 +970,7 @@ function validatePrefsReset() {
function pref_hotkey_handler(e) {
try {
if (e.target.nodeName == "INPUT") return;
if (e.target.nodeName == "INPUT" || e.target.nodeName == "TEXTAREA") return;
var keycode = false;
var shift_key = false;