From d1a81a877f0e7364b7d69e214ec74151d76dd25c Mon Sep 17 00:00:00 2001 From: Shin'ya Ueoka Date: Mon, 15 Jan 2018 21:56:10 +0900 Subject: focus on visible elements --- src/content/focuses.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/content/focuses.js') diff --git a/src/content/focuses.js b/src/content/focuses.js index c2658b4..a6f6cc8 100644 --- a/src/content/focuses.js +++ b/src/content/focuses.js @@ -1,7 +1,10 @@ +import * as doms from 'shared/utils/dom'; + const focusInput = () => { let inputTypes = ['email', 'number', 'search', 'tel', 'text', 'url']; let inputSelector = inputTypes.map(type => `input[type=${type}]`).join(','); - let target = window.document.querySelector(inputSelector + ',textarea'); + let targets = window.document.querySelectorAll(inputSelector + ',textarea'); + let target = Array.from(targets).find(doms.isVisible); if (target) { target.focus(); } -- cgit v1.2.3