File tree 2 files changed +44
-0
lines changed
2 files changed +44
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Dropdown Bug Fix
2
+
3
+ ## What does it do?
4
+ It makes the user options dropdown work in all pages!
5
+
6
+ ## Where should I put it?
7
+ Put it in the Footer Advert Area (Bottom advert).
8
+ The code will not run if you put it elsewhere. It may run in the left advert area, but it will break the sidebar.
9
+
10
+ ## How can I install it?
11
+ Create a script tag with ` src ` pointing to ` dropdown-bug-fix.js ` .
12
+
13
+ In case you do not know how to do that or prefer to use a ready code, we have provided it below.
14
+
15
+ ### Content-Type Header Errors
16
+ The RAW option on GitHub can return an incorrect Content-Type header which makes the code not load at all.
17
+ To solve this, we need an external service which adds the correct type, like jsDelivr.
18
+
19
+ The full code, using jsDelivr:
20
+ ```
21
+ <script src="https://cdn.jsdelivr.net/gh/WybeNetwork/VistaPanel-Customizations@master/dropdown-bug-fix/dropdown-bug-fix.js" type="text/javascript"></script>
22
+ ```
23
+ Alternatively, you can use our CDN:
24
+ ```
25
+ <script src="https://vpc.cdn.wybenetwork.com/dropdown-bug-fix/dropdown-bug-fix.js" type="text/javascript"></script>
26
+ ```
27
+ ## Changelog
28
+ * Created on 06 August 2022 by [ Anyx] ( https://github.com/4yx )
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Created at 06 August 2022 by Anyx.
3
+ * DO NOT REMOVE CREDITS!
4
+ * Created for: Wybe Network.
5
+ */
6
+ check = document . getElementById ( "main" ) ;
7
+ if ( check == null ) {
8
+ dropdown = document . getElementById ( "btnUserPref" ) ;
9
+ dropdown . onclick = function ( ) {
10
+ if ( dropdown . parentElement . classList . contains ( "open" ) ) {
11
+ dropdown . parentElement . classList . remove ( "open" ) ;
12
+ } else {
13
+ dropdown . parentElement . classList . add ( "open" ) ;
14
+ }
15
+ }
16
+ }
You can’t perform that action at this time.
0 commit comments