Skip to content

Commit

Permalink
Remove blank tabs/trailing whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
sixhours committed Mar 7, 2013
1 parent b1d3b53 commit 9f3e2cd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions js/skip-link-focus-fix.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
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 ) && 'undefined' !== typeof( document.getElementById ) ) {
var eventMethod = ( window.addEventListener ) ? 'addEventListener' : 'attachEvent';
window[ eventMethod ]( 'hashchange', function() {
var element = document.getElementById( location.hash.substring( 1 ) );

if ( element ) {
if ( ! /^(?:a|select|input|button|textarea)$/i.test( element.tagName ) )
element.tabIndex = -1;

element.focus();
}
}, false );
}, false );
}
})();

0 comments on commit 9f3e2cd

Please sign in to comment.