Project-GC Userscript/Development/Last Log was a DNF

From Project-GC
Revision as of 19:23, 7 August 2023 by Pleu (4523550) (talk | contribs) (added category)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
Regarding the "Last Log was a DNF" Feature. [[Project-GC Userscript


/Development|Project-GC Userscript


/Development]]



Description

Last Log was a DNF is a feature that displays blue text below the difficulty/terrain section on a geocache page. It will display the following blue colored text: "Cache Issues: The latest log for this cache is a DNF, please read the log before before beginning your search."
Latest log dnf.png

Change Log

2022-08-23; Issue #111. Fixed in v2.3.15

Updated the code to account for the changes in the HTML. In particular, an HTML <span> was added. Around Line 855, changed from:

// If the first log is a DNF, display a blue warning on top of the page
     if($('#cache_logs_table tr:first td div.LogDisplayRight strong img').attr('src') === '/images/logtypes/3.png') {

--> to:

// If the first log is a DNF, display a blue warning on top of the page
     if($('#cache_logs_table span.h4 img').attr('src') === '/images/logtypes/3.png') {