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.
2013-01-22 00:01:53 +00:00
|
|
|
( function() {
|
2013-03-05 00:41:38 +00:00
|
|
|
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 );
|
|
|
|
}
|
2013-01-22 00:01:53 +00:00
|
|
|
})();
|