_s: Formatting changes:
- Reduce element comments to either the element id or the first element class. - Tabs > Spaces. - Improve adherence to formatting guidelines.
This commit is contained in:
parent
c7f2b7a1ee
commit
c4f2aa32ce
18 changed files with 301 additions and 307 deletions
|
@ -1,25 +1,19 @@
|
|||
( function() {
|
||||
var is_webkit = navigator.userAgent.toLowerCase().indexOf('webkit') > -1;
|
||||
var is_opera = navigator.userAgent.toLowerCase().indexOf('opera') > -1;
|
||||
var is_ie = navigator.userAgent.toLowerCase().indexOf('msie') > -1;
|
||||
|
||||
if((is_webkit || is_opera || is_ie ) && typeof(document.getElementById) !== 'undefined' ) {
|
||||
var eventMethod = (window.addEventListener) ? 'addEventListener' : 'attachEvent' ;
|
||||
window[eventMethod]("hashchange", function(event) {
|
||||
|
||||
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);
|
||||
|
||||
}
|
||||
|
||||
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 );
|
||||
}
|
||||
})();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue