This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
2015-08-12 07:06:27 +00:00
|
|
|
/**
|
|
|
|
* skip-link-focus-fix.js
|
|
|
|
*
|
|
|
|
* Helps with accessibility for keyboard only users.
|
|
|
|
*
|
2016-01-04 13:38:20 +00:00
|
|
|
* Learn more: https://git.io/vWdr2
|
2015-08-12 07:06:27 +00:00
|
|
|
*/
|
2014-12-10 11:36:38 +00:00
|
|
|
( function() {
|
|
|
|
var is_webkit = navigator.userAgent.toLowerCase().indexOf( 'webkit' ) > -1,
|
|
|
|
is_opera = navigator.userAgent.toLowerCase().indexOf( 'opera' ) > -1,
|
|
|
|
is_ie = navigator.userAgent.toLowerCase().indexOf( 'msie' ) > -1;
|
|
|
|
|
|
|
|
if ( ( is_webkit || is_opera || is_ie ) && document.getElementById && window.addEventListener ) {
|
|
|
|
window.addEventListener( 'hashchange', function() {
|
2015-08-12 07:06:27 +00:00
|
|
|
var id = location.hash.substring( 1 ),
|
|
|
|
element;
|
|
|
|
|
|
|
|
if ( ! ( /^[A-z0-9_-]+$/.test( id ) ) ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
element = document.getElementById( id );
|
2014-12-10 11:36:38 +00:00
|
|
|
|
|
|
|
if ( element ) {
|
2015-08-12 07:06:27 +00:00
|
|
|
if ( ! ( /^(?:a|select|input|button|textarea)$/i.test( element.tagName ) ) ) {
|
2014-12-10 11:36:38 +00:00
|
|
|
element.tabIndex = -1;
|
2015-08-12 07:06:27 +00:00
|
|
|
}
|
2014-12-10 11:36:38 +00:00
|
|
|
|
|
|
|
element.focus();
|
|
|
|
}
|
|
|
|
}, false );
|
|
|
|
}
|
|
|
|
})();
|