[PALEMOON] Focus and select the first non-collapsed text element in the bookmark properties dialog

This commit is contained in:
JustOff 2018-11-03 18:18:25 +02:00 committed by Roy Tam
commit 7da6d82c53

View file

@ -222,6 +222,11 @@ var gEditItemOverlay = {
}
let focusElement = () => {
let elt = document.querySelector("textbox:not([collapsed=true])");
if (elt) {
elt.focus();
elt.select();
}
this._initialized = true;
};