Skip to content

Commit 56982c2

Browse files
committed
Closes #16
This should fix the user dropdown menu bug, and close #16.
1 parent adc858f commit 56982c2

File tree

2 files changed

+44
-0
lines changed

2 files changed

+44
-0
lines changed

dropdown-bug-fix/README.md

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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)

dropdown-bug-fix/dropdown-bug-fix.js

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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+
}

0 commit comments

Comments
 (0)