Project-GC Userscript/Development/Settings Menu: Difference between revisions

From Project-GC
Jump to navigation Jump to search
new page; feature documented.
m added category
 
(One intermediate revision by one other user not shown)
Line 6: Line 6:
'''Settings Menu''' is a feature that displays a list of toggle based settings that allow you to choose which features you want enabled.  These settings are stored within your profile.  
'''Settings Menu''' is a feature that displays a list of toggle based settings that allow you to choose which features you want enabled.  These settings are stored within your profile.  
<br/>
<br/>
[[File:settings_menu.png|500px]]
[[File:settings_menu.png|700px]]


= Change Log =
= Change Log =
Line 23: Line 23:
         })
         })
</pre>
</pre>
[[Category: Project-GC Userscript]]

Latest revision as of 17:22, 7 August 2023

Settings Menu [[Project-GC Userscript


/Development|Project-GC Userscript


/Development]]



Description

Settings Menu is a feature that displays a list of toggle based settings that allow you to choose which features you want enabled. These settings are stored within your profile.

Change Log

2022-09-04; Issue #108. Fixed in v2.3.19

Updated the code, adding single line of code to prevent the default action of page reload. Thank you @cghove for the fix! Around Line 436, added the following line:

            // Issue 108; fixed 2022-09-05 (Settings menu now reloading page)
            e.preventDefault();

resulting in: -->

        $("#pgcUserMenuButton").click(function(e) {
            $('#pgcUserMenu').show();
            // Issue 108; fixed 2022-09-05 (Settings menu now reloading page)
            e.preventDefault();
        })