fix fragment handling when desired fragment is 0
This commit is contained in:
		| @@ -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 ) { | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user