fix fragment handling when desired fragment is 0
This commit is contained in:
parent
260f287926
commit
d68423f310
@ -3716,7 +3716,10 @@
|
|||||||
v = parseInt( bits[1], 10 ) || 0,
|
v = parseInt( bits[1], 10 ) || 0,
|
||||||
f;
|
f;
|
||||||
if( config.fragmentInURL ) {
|
if( config.fragmentInURL ) {
|
||||||
f = parseInt( bits[2], 10 ) || undefined;
|
f = parseInt( bits[2], 10 );
|
||||||
|
if( isNaN( f ) ) {
|
||||||
|
f = undefined;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if( h !== indexh || v !== indexv || f !== undefined ) {
|
if( h !== indexh || v !== indexv || f !== undefined ) {
|
||||||
|
Loading…
Reference in New Issue
Block a user