Skip to content

Commit fc62ab1

Browse files
beekermememediasbruno
authored andcommitted
Fixing lint error and PR suggestion change to use double quotes
1 parent ce94d86 commit fc62ab1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: src/helpers/tabbable.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ function hidesContents(element) {
2727
(element.scrollWidth <= 0 && element.scrollHeight <= 0)
2828
: style.getPropertyValue("display") == "none";
2929
} catch (exception) {
30-
console.warn('Failed to inspect element style');
30+
// eslint-disable-next-line no-console
31+
console.warn("Failed to inspect element style");
3132
return false;
3233
}
3334
}

0 commit comments

Comments
 (0)