Skip to content

Commit

Permalink
Fixes issue with parsing additional log entries
Browse files Browse the repository at this point in the history
  • Loading branch information
magma1447 committed Oct 30, 2018
1 parent e147fef commit 2f6a1ff
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions greasemonkey-geocaching-projectgc.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// @include http://www.geocaching.com/*
// @include https://www.geocaching.com/*
// @exclude https://www.geocaching.com/profile/profilecontent.html
// @version 2.2.3
// @version 2.2.4
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js
// @require https://greasyfork.org/scripts/5392-waitforkeyelements/code/WaitForKeyElements.js
// @require https://greasemonkey.github.io/gm4-polyfill/gm4-polyfill.js
Expand Down Expand Up @@ -708,7 +708,7 @@

// Since everything in the logbook is ajax, we need to wait for the elements
// We also want to wait on challengeCheckerResults
waitForKeyElements('#cache_logs_table tr', Logbook);
waitForKeyElements('#cache_logs_table tbody tr', Logbook);
}
});
}
Expand Down Expand Up @@ -923,9 +923,9 @@

function Page_Logbook() {
// Since everything in the logbook is ajax, we need to wait for the elements
waitForKeyElements('#AllLogs tr', Logbook);
waitForKeyElements('#PersonalLogs tr', Logbook);
waitForKeyElements('#FriendLogs tr', Logbook);
waitForKeyElements('#AllLogs tbody tr', Logbook);
waitForKeyElements('#PersonalLogs tbody tr', Logbook);
waitForKeyElements('#FriendLogs tbody tr', Logbook);
}

function Logbook(jNode) {
Expand Down

0 comments on commit 2f6a1ff

Please sign in to comment.