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

From Project-GC
Jump to: navigation, search
m (fix image size)
(add template)
Line 1: Line 1:
== Description==
+
{{PGC-back-link
 +
|content=LogBookLinks (All Logs, Yours, Friends, Gallery)
 +
|link=Project-GC_Userscript/Development
 +
}}
 +
= 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 just above the log list.  This feature, <i>when fully implemented</i> will display the following (example):
 
<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 just above the log list.  This feature, <i>when fully implemented</i> will display the following (example):
  
Line 10: Line 14:
 
This feature is currently broken and does not function properly.  This is cited in Github Repo Issues: #115 and #116.
 
This feature is currently broken and does not function properly.  This is cited in Github Repo Issues: #115 and #116.
  
== Change Log ==
+
= Change Log =
=== 2022-08-24; Issue #112.  Fixed in v2.3.15 ===
+
== 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".
 
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:<br>
 
Around Line 1011, changed from:<br>

Revision as of 00:23, 1 September 2022

LogBookLinks (All Logs, Yours, Friends, Gallery) Project-GC_Userscript/Development



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:
LogBookLinks broken.png

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') );