-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The following changes were made: * Update credits, in a way that does not preserve needless comments. Enforce a consistent style on date writing. * Fix bug in AlterVP that caused the code for the credits description to be executed even if disabled. * Update Tutorial Link Changer, with a much better way of replacing the link, and fixing an issue where it would not be replaced sometimes. If you still face an issue, feel free to update #18 or make a new issue.
- Loading branch information
Showing
23 changed files
with
117 additions
and
114 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,7 +57,7 @@ const AlterVP = { | |
} | ||
}; | ||
</script> | ||
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected].2/altervp/altervp.js" type="text/javascript"></script> | ||
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected].3/altervp/altervp.js" type="text/javascript"></script> | ||
``` | ||
Alternatively, you can use our CDN: | ||
```html | ||
|
@@ -82,5 +82,5 @@ Feel free to remove the comment line symbol (``//``) that explains the type of t | |
* Created on 14 September 2018 by [woxly](https://github.com/woxly) | ||
* Modified on 14 September 2018 by [woxly](https://github.com/woxly) | ||
* Lost in time | ||
* Recreated on 30 August 2022 by [Anyx](https://github.com/4yx) | ||
* Last modified on 3 September 2022 by [Anyx](https://github.com/4yx) | ||
* Recreated on 30 August and modified on 03 September 2022 by [Anyx](https://github.com/4yx) | ||
* Last modified on 13 September 2022 by [Anyx](https://github.com/4yx) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
15 changes: 7 additions & 8 deletions
15
change-language-link-text-changer/change-language-link-text-changer.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,19 @@ | ||
/* ************************************************************************** | ||
* | ||
/* ************************************************************************** | ||
* @preserve | ||
* VistaPanel Add-on | ||
* Script Name: "Change Password" Link and Text Changer | ||
* Author: MAHOfficial & Wybe Network | ||
* Author URL: https://mahofficial.wybenetwork.com | ||
* Script Name: "Change Language" Link and Text Changer | ||
* Author: AADev & Wybe Network | ||
* Author URL: https://aadev.wybenetwork.com | ||
* Version: 1.0 | ||
* GitHub Project URL: https://github.com/WybeNetwork/VistaPanel-Customizations | ||
* Official Website URL: https://wybenetwork.com | ||
* This file is licensed under MIT Attribution | ||
* Last Updated on 8th August 2020 by MAHOfficial | ||
* | ||
* Last Updated on 08 August 2020 by AADev | ||
************************************************************************** | ||
*/ | ||
var t = ["item_", "icon-"]; | ||
for (n=0; n<=1; n++) | ||
{ | ||
document.getElementById(`${t[n]}change_language`).setAttribute("href", change_language_link) | ||
document.getElementById(`${t[n]}change_language`).innerHTML=change_language_text; | ||
} | ||
} |
13 changes: 6 additions & 7 deletions
13
change-language-link-text-changer/change-language-link-text-changer.min.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,14 @@ | ||
/* ************************************************************************** | ||
* | ||
/* ************************************************************************** | ||
* @preserve | ||
* VistaPanel Add-on | ||
* Script Name: "Change Password" Link and Text Changer | ||
* Author: MAHOfficial & Wybe Network | ||
* Author URL: https://mahofficial.wybenetwork.com | ||
* Script Name: "Change Language" Link and Text Changer | ||
* Author: AADev & Wybe Network | ||
* Author URL: https://aadev.wybenetwork.com | ||
* Version: 1.0 | ||
* GitHub Project URL: https://github.com/WybeNetwork/VistaPanel-Customizations | ||
* Official Website URL: https://wybenetwork.com | ||
* This file is licensed under MIT Attribution | ||
* Last Updated on 8th August 2020 by MAHOfficial | ||
* | ||
* Last Updated on 08 August 2020 by AADev | ||
************************************************************************** | ||
*/ | ||
var t=["item_","icon-"];for(n=0;n<=1;n++)document.getElementById(`${t[n]}change_language`).setAttribute("href",change_language_link),document.getElementById(`${t[n]}change_language`).innerHTML=change_language_text; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ The full code, using jsDelivr: | |
var change_language_link = "your_website_url", | ||
change_language_text = "your_text"; | ||
</script> | ||
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected].2/change-language-link-text-changer/change-language-link-text-changer.js" type="text/javascript"></script> | ||
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected].3/change-language-link-text-changer/change-language-link-text-changer.js" type="text/javascript"></script> | ||
``` | ||
Alternatively, you can use our CDN: | ||
```html | ||
|
27 changes: 14 additions & 13 deletions
27
change-password-link-text-changer/change-password-link-text-changer.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
/* | ||
* VistaPanel Add-on | ||
* Script Name: "Change Password" Link and Text Changer | ||
* Author: MAHOfficial & Wybe Network | ||
* Author URL: https://mahofficial.wybenetwork.com | ||
* Version: 1.0 | ||
* Github Project URL: https://github.com/WybeNetwork/VistaPanel-Customizations | ||
* Official Website URL: https://wybenetwork.com | ||
* This file is licensed under MIT Attribution | ||
* | ||
* Modified at 2 November 2018 by PlanetCloud | ||
*/ | ||
/* ************************************************************************** | ||
* @preserve | ||
* VistaPanel Add-on | ||
* Script Name: "Change Password" Link and Text Changer | ||
* Author: AADev & Wybe Network | ||
* Author URL: https://aadev.wybenetwork.com | ||
* Version: 1.0 | ||
* Github Project URL: https://github.com/WybeNetwork/VistaPanel-Customizations | ||
* Official Website URL: https://wybenetwork.com | ||
* This file is licensed under MIT Attribution | ||
* Modified at 02 November 2018 by PlanetCloud | ||
************************************************************************** | ||
*/ | ||
var n = document.getElementById("lnkUserPrefChangePwd"); | ||
n.setAttribute("href", change_password_link); | ||
n.innerHTML = change_password_text; | ||
n.innerHTML = change_password_text; |
25 changes: 13 additions & 12 deletions
25
change-password-link-text-changer/change-password-link-text-changer.min.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
/* | ||
* VistaPanel Add-on | ||
* Script Name: "Change Password" Link and Text Changer | ||
* Author: MAHOfficial & Wybe Network | ||
* Author URL: https://mahofficial.wybenetwork.com | ||
* Version: 1.0 | ||
* Github Project URL: https://github.com/WybeNetwork/VistaPanel-Customizations | ||
* Official Website URL: https://wybenetwork.com | ||
* This file is licensed under MIT Attribution | ||
* | ||
* Modified at 2 November 2018 by PlanetCloud | ||
*/ | ||
/* ************************************************************************** | ||
* @preserve | ||
* VistaPanel Add-on | ||
* Script Name: "Change Password" Link and Text Changer | ||
* Author: AADev & Wybe Network | ||
* Author URL: https://aadev.wybenetwork.com | ||
* Version: 1.0 | ||
* Github Project URL: https://github.com/WybeNetwork/VistaPanel-Customizations | ||
* Official Website URL: https://wybenetwork.com | ||
* This file is licensed under MIT Attribution | ||
* Modified at 02 November 2018 by PlanetCloud | ||
************************************************************************** | ||
*/ | ||
var n=document.getElementById("lnkUserPrefChangePwd");n.setAttribute("href",change_password_link),n.innerHTML=change_password_text; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ The full code, using jsDelivr: | |
var change_password_link = "your_website_url", | ||
change_password_text = "your_text"; | ||
</script> | ||
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected].2/change-password-link-text-changer/change-password-link-text-changer.js" type="text/javascript"></script> | ||
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected].3/change-password-link-text-changer/change-password-link-text-changer.js" type="text/javascript"></script> | ||
``` | ||
Alternatively, you can use our CDN: | ||
```html | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,7 +46,7 @@ The full code, using jsDelivr: | |
} | ||
</script> | ||
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected].2/cpanel-logo-to-copyright/cpanel-logo-to-copyright.js" type="text/javascript"></script> | ||
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected].3/cpanel-logo-to-copyright/cpanel-logo-to-copyright.js" type="text/javascript"></script> | ||
``` | ||
Alternatively, you can use our CDN: | ||
```html | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ To solve this, we need an external service which adds the correct type, like jsD | |
|
||
The full code, using jsDelivr: | ||
```html | ||
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected].2/dropdown-bug-fix/dropdown-bug-fix.js" type="text/javascript"></script> | ||
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected].3/dropdown-bug-fix/dropdown-bug-fix.js" type="text/javascript"></script> | ||
``` | ||
Alternatively, you can use our CDN: | ||
```html | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
/* | ||
/* @preserve | ||
* Created at 06 August 2022 by Anyx. | ||
* DO NOT REMOVE CREDITS! | ||
* Created for: Wybe Network. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
/* | ||
/* @preserve | ||
* Created at 06 August 2022 by Anyx. | ||
* DO NOT REMOVE CREDITS! | ||
* Created for: Wybe Network. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ It makes the VistaPanel search form responsive, so that it does not break the vP | |
|
||
## Where should I put it? | ||
Put it in the Header Advert Area (IMPORTANT). | ||
Due to [this issue](https://github.com/VPTOfficial/VistaPanel-Customizations/issues/4) reported by [MAHOfficial](https://github.com/mahofficial), the code doesn't seem to run properly if you put it elsewhere. Thanks for reporting it. | ||
Due to [this issue](https://github.com/VPTOfficial/VistaPanel-Customizations/issues/4) reported by [AADev](https://github.com/mahofficial), the code doesn't seem to run properly if you put it elsewhere. Thanks for reporting it. | ||
|
||
## How can I install it? | ||
Create a script tag with `src` pointing to `responsive-domain-search.js` or `responsive-domain-search.min.js` for the minified version. | ||
|
@@ -32,7 +32,7 @@ The full code, using jsDelivr: | |
affCode = "AFFILIATE_CODE_HERE"; | ||
*/ | ||
</script> | ||
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected].2/responsive-domain-search/responsive-domain-search.js" type="text/javascript"></script> | ||
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected].3/responsive-domain-search/responsive-domain-search.js" type="text/javascript"></script> | ||
``` | ||
Alternatively, you can use our CDN: | ||
```html | ||
|
@@ -46,9 +46,9 @@ Alternatively, you can use our CDN: | |
Do not forget to remove the comment lines symbols (``/* OPTIONAL``and ``*/``) if you want your affiliate code to work. | ||
## Changelog | ||
* Created on 10 July 2018 by [PlanetCloud](https://github.com/PlanetTheCloud) | ||
* Modified at 27 July 2018 by Christine (Cyrl) | ||
* Modified at 25 August 2018 by [Anyx](https://github.com/4yx) | ||
* Modified on 28th September 2018 by [MAHOfficial](https://github.com/mahofficial) and [Anyx](https://github.com/4yx) | ||
* Modified on 30th September 2018 by [PlanetCloud](https://github.com/PlanetTheCloud) | ||
* Modified on 22th November 2018 by [Anyx](https://github.com/4yx) | ||
* Last modified on 06th August 2022 by [Anyx](https://github.com/4yx) | ||
* Modified on 27 July 2018 by Christine (Cyrl) | ||
* Modified on 25 August 2018 by [Anyx](https://github.com/4yx) | ||
* Modified on 28 September 2018 by [AADev](https://github.com/mahofficial) and [Anyx](https://github.com/4yx) | ||
* Modified on 30 September 2018 by [PlanetCloud](https://github.com/PlanetTheCloud) | ||
* Modified on 22 November 2018 by [Anyx](https://github.com/4yx) | ||
* Last modified on 06 August 2022 by [Anyx](https://github.com/4yx) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.