1 | window.addEventListener('load', function() { |
||
2 | setTimeout(() => { |
||
3 | if(window.location.hash) { |
||
4 | const els = document.querySelectorAll('[aria-controls="'+window.location.hash.substring(1)+'"]'); |
||
5 | if(els.length) { |
||
6 | el = els[0]; |
||
0 ignored issues
–
show
Bug
introduced
by
![]() |
|||
7 | if ("#"+el.getAttribute('aria-controls') === window.location.hash) { |
||
8 | el.firstChild.click(); |
||
9 | el.firstChild.style.fontWeight = 'bold'; |
||
10 | el.firstChild.style.color = '#0071c4'; |
||
11 | }; |
||
12 | } |
||
13 | } |
||
14 | }, 500); |
||
15 | }); |
||
16 |