diff --git a/dashboard-ui/scripts/mediacontroller.js b/dashboard-ui/scripts/mediacontroller.js index 7a499e62fc..6070285a00 100644 --- a/dashboard-ui/scripts/mediacontroller.js +++ b/dashboard-ui/scripts/mediacontroller.js @@ -566,7 +566,7 @@ // Get active elem to see what type it is var active = document.activeElement; var type = active.type || active.tagName.toLowerCase(); - return (type === "text" || type === "select" || type === "textarea"); + return (type === "text" || type === "select" || type === "textarea" || type == "password"); }; }