Project-GC Userscript/Development/Log Book Links: Difference between revisions

From Project-GC
Jump to navigation Jump to search
Created page with "== Description== <b>Log Links (All Logs, Yours, Friends, Gallery)</b> is a feature that enhances and adds additional links to the already existing "All Logs | Gallery" links j..."
 
Create Page
Line 3: Line 3:


Current and Broken view:<br>
Current and Broken view:<br>
<img src="https://github.com/magma1447/greasemonkey-geocaching-projectgc/blob/master/images/LogBookLinks_broken.png" width="400">
[[File:LogBookLinks_broken.png|500px]]


When fixed, should display as such:
When fixed, should display as such:

Revision as of 22:20, 31 August 2022

Description

Log Links (All Logs, Yours, Friends, Gallery) is a feature that enhances and adds additional links to the already existing "All Logs | Gallery" links just above the log list. This feature, when fully implemented will display the following (example):

Current and Broken view:

When fixed, should display as such:

View all logs (49) | Yours (1) | Friends (20) | Gallery (42)

This feature is currently broken and does not function properly. This is cited in Github Repo Issues: #115 and #116.

Change Log

2022-08-24; Issue #112. Fixed in v2.3.15

Updated the code to account for a typo in the code that added an escaped single quote near the word "Friends". Around Line 1011, changed from:

// 2022-08-24, fixes #112: Extra single quote showing up in LogBookLinks near "Friends".
$('\
    <span> | </span><a id="pgc-logbook-yours" href="' + $('#ctl00_ContentBody_uxLogbookLink').attr('href') + '#tabs-2">Yours</a>\
    <span> | </span><a href="' + $('#ctl00_ContentBody_uxLogbookLink').attr('href') + '#tabs-3">Friends\'</a>\ 
    ').insertAfter( $('#ctl00_ContentBody_uxLogbookLink') );

--> to:

// 2022-08-24, fixes #112: Extra single quote showing up in LogBookLinks near "Friends".
$('\
    <span> | </span><a id="pgc-logbook-yours" href="' + $('#ctl00_ContentBody_uxLogbookLink').attr('href') + '#tabs-2">Yours</a>\
    <span> | </span><a href="' + $('#ctl00_ContentBody_uxLogbookLink').attr('href') + '#tabs-3">Friends</a>\ 
    ').insertAfter( $('#ctl00_ContentBody_uxLogbookLink') );