forked from mirror/_s
JSLint error
JSLint error: "regular expressions should be preceded by a left parenthesis assignment colon or comma"
This commit is contained in:
parent
d5c78acc10
commit
dfd8a0e921
|
@ -8,14 +8,14 @@
|
|||
var id = location.hash.substring( 1 ),
|
||||
element;
|
||||
|
||||
if ( ! /^[A-z0-9_-]+$/.test( id ) ) {
|
||||
if ( ! ( /^[A-z0-9_-]+$/.test( id ) ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
element = document.getElementById( id );
|
||||
|
||||
if ( element ) {
|
||||
if ( ! /^(?:a|select|input|button|textarea)$/i.test( element.tagName ) ) {
|
||||
if ( ! ( /^(?:a|select|input|button|textarea)$/i.test( element.tagName ) ) ) {
|
||||
element.tabIndex = -1;
|
||||
}
|
||||
|
||||
|
|
Reference in New Issue