1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
This commit is contained in:
Luke Pulverenti 2014-05-14 14:04:32 -04:00
commit 6b390990a1

View file

@ -566,7 +566,7 @@
// Get active elem to see what type it is // Get active elem to see what type it is
var active = document.activeElement; var active = document.activeElement;
var type = active.type || active.tagName.toLowerCase(); var type = active.type || active.tagName.toLowerCase();
return (type === "text" || type === "select" || type === "textarea"); return (type === "text" || type === "select" || type === "textarea" || type == "password");
}; };
} }