We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11f3eb5 commit 5b43cc0Copy full SHA for 5b43cc0
src/skip-to.vue
@@ -32,7 +32,6 @@ export default {
32
}, false)
33
34
if (location.hash && location.hash.substring(1)) {
35
- console.log(location.hash.substring(1))
36
this.focusElement(location.hash.substring(1))
37
}
38
},
@@ -42,7 +41,6 @@ export default {
42
41
let element = window.document.getElementById(id)
43
if (element) {
44
if (!/^(a|select|input|button|textarea)/i.test(element.tagName.toLowerCase())) {
45
- console.log('entrou')
46
element.setAttribute('tabindex', -1)
47
48
element.focus()
0 commit comments