fix issue with empty anchors

This commit is contained in:
Drew Harwell 2020-01-22 17:50:49 -05:00 committed by GitHub
parent d33129ff96
commit c1f9ea7b3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@
}else{
var finalLink = pageLinks[pageLinks.length-1].href;
// make sure we don't load the same page twice
if (!finalLink || finalLink == lastPageLoaded){
if (!finalLink || finalLink == window.location.href || finalLink == lastPageLoaded){
console.log('this was the last page');
return false;
}else{