mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-20 08:07:59 +01:00
Declare a variable in "gi" action.
This commit is contained in:
@@ -330,7 +330,7 @@ function Buffer() //{{{
|
||||
"//xhtml:input[not(@type) or @type='text' or @type='password'] | //xhtml:textarea[not(@disabled) and not(@readonly)]"
|
||||
);
|
||||
|
||||
for (match in matches)
|
||||
for (let match in matches)
|
||||
{
|
||||
let computedStyle = util.computedStyle(match);
|
||||
if (computedStyle.visibility != "hidden" && computedStyle.display != "none")
|
||||
@@ -339,11 +339,7 @@ function Buffer() //{{{
|
||||
|
||||
if (elements.length > 0)
|
||||
{
|
||||
if (count > elements.length)
|
||||
count = elements.length;
|
||||
else if (count < 1)
|
||||
count = 1;
|
||||
|
||||
count = Math.min(Math.max(count, 1), elements.length);
|
||||
elements[count - 1].focus();
|
||||
}
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user