1
1
/*
2
2
* Created on 14 September 2018 by woxly
3
3
* Recreated on 30 August 2022 by Anyx
4
+ * Modified on 3 September 2022 by Anyx
4
5
* DO NOT REMOVE CREDITS!
5
6
*/
6
7
document . addEventListener ( "DOMContentLoaded" , function ( ) {
7
8
// Title
8
- document . title = AlterVP . title ;
9
+ if ( AlterVP . title !== undefined ) {
10
+ document . title = AlterVP . title ;
11
+ }
9
12
// Protocol
10
- if ( window . location . protocol . replace ( / : / g, '' ) !== AlterVP . protocol ) {
11
- location . protocol = AlterVP . protocol ;
13
+ if ( AlterVP . protocol !== undefined ) {
14
+ if ( window . location . protocol . replace ( / : / g, '' ) !== AlterVP . protocol ) {
15
+ location . protocol = AlterVP . protocol ;
16
+ }
12
17
}
13
18
// Logo
14
- document . getElementById ( "imgLogo" ) . src = AlterVP . logo ;
19
+ if ( AlterVP . logo !== undefined ) {
20
+ document . getElementById ( "imgLogo" ) . src = AlterVP . logo ;
21
+ }
15
22
// Themes
16
- if ( AlterVP . category !== "lightspace" ) {
17
- themeURL = [ 'https://vpt.cdn.wybenetwork.com' , AlterVP . theme , 'styles.css' ] . join ( "/" ) ;
18
- if ( AlterVP . category == "normal" ) {
19
- iconURL = [ 'https://vpt.cdn.wybenetwork.com' , AlterVP . theme , 'icon_spritemap.css' ] . join ( "/" ) ;
20
- icon = document . createElement ( 'link' ) ;
21
- icon . type = 'text/css' ;
22
- icon . rel = 'stylesheet' ;
23
- icon . href = iconURL ;
24
- document . head . appendChild ( icon ) ;
23
+ if ( AlterVP . theme !== undefined && AlterVP . category !== undefined ) {
24
+ if ( AlterVP . category !== "lightspace" ) {
25
+ themeURL = [ 'https://vpt.cdn.wybenetwork.com' , AlterVP . theme , 'styles.css' ] . join ( "/" ) ;
26
+ if ( AlterVP . category == "normal" ) {
27
+ iconURL = [ 'https://vpt.cdn.wybenetwork.com' , AlterVP . theme , 'icon_spritemap.css' ] . join ( "/" ) ;
28
+ icon = document . createElement ( 'link' ) ;
29
+ icon . type = 'text/css' ;
30
+ icon . rel = 'stylesheet' ;
31
+ icon . href = iconURL ;
32
+ document . head . appendChild ( icon ) ;
33
+ }
34
+ } else {
35
+ themeURL = [ 'https://vpt.cdn.wybenetwork.com' , AlterVP . theme , 'panel.css' ] . join ( "/" ) ;
25
36
}
26
- } else {
27
- themeURL = [ 'https://vpt.cdn.wybenetwork.com' , AlterVP . theme , 'panel.css' ] . join ( "/" ) ;
37
+ theme = document . createElement ( 'link' ) ;
38
+ theme . type = 'text/css' ;
39
+ theme . rel = 'stylesheet' ;
40
+ theme . href = themeURL ;
41
+ document . head . appendChild ( theme ) ;
28
42
}
29
- theme = document . createElement ( 'link' ) ;
30
- theme . type = 'text/css' ;
31
- theme . rel = 'stylesheet' ;
32
- theme . href = themeURL ;
33
- document . head . appendChild ( theme ) ;
34
43
// Credits
35
- script = document . createElement ( 'script' )
36
- script . setAttribute ( 'type' , 'text/javascript' )
37
- script . innerHTML = "window.addEventListener('load',function(){document.getElementById('imgPoweredByCpanel').src=AlterVP.credits.logo})"
38
- document . body . appendChild ( script )
39
- document . getElementById ( "txtCpanelVersion" ) . innerHTML = AlterVP . credits . desc ;
44
+ if ( AlterVP . credits . logo !== undefined ) {
45
+ script = document . createElement ( 'script' )
46
+ script . setAttribute ( 'type' , 'text/javascript' )
47
+ script . innerHTML = "window.addEventListener('load',function(){document.getElementById('imgPoweredByCpanel').src=AlterVP.credits.logo,document.getElementById('txtCpanelVersion').innerHTML=AlterVP.credits.desc})"
48
+ document . body . appendChild ( script )
49
+ }
50
+ if ( AlterVP . credits . desc !== undefined ) {
51
+ document . getElementById ( "txtCpanelVersion" ) . innerHTML = AlterVP . credits . desc ;
52
+ }
40
53
} ) ;
0 commit comments