Merge pull request #3460 from mountainash/fix/broken-asset-links
Fixed broken Alphacoders hosted assest asset links
This commit is contained in:
commit
1fc60b0682
@ -33,10 +33,9 @@ var hol = [
|
|||||||
[0,11,24,4,"https://aircoookie.github.io/xmas.png"], // christmas
|
[0,11,24,4,"https://aircoookie.github.io/xmas.png"], // christmas
|
||||||
[0,2,17,1,"https://images.alphacoders.com/491/491123.jpg"], // st. Patrick's day
|
[0,2,17,1,"https://images.alphacoders.com/491/491123.jpg"], // st. Patrick's day
|
||||||
[2025,3,20,2,"https://aircoookie.github.io/easter.png"],
|
[2025,3,20,2,"https://aircoookie.github.io/easter.png"],
|
||||||
[2023,3,9,2,"https://aircoookie.github.io/easter.png"],
|
|
||||||
[2024,2,31,2,"https://aircoookie.github.io/easter.png"],
|
[2024,2,31,2,"https://aircoookie.github.io/easter.png"],
|
||||||
[0,6,4,1,"https://initiate.alphacoders.com/download/wallpaper/516792/images/jpg/510921363292536"], // 4th of July
|
[0,6,4,1,"https://images.alphacoders.com/516/516792.jpg"], // 4th of July
|
||||||
[0,0,1,1,"https://initiate.alphacoders.com/download/wallpaper/1198800/images/jpg/2522807481585600"] // new year
|
[0,0,1,1,"https://images.alphacoders.com/119/1198800.jpg"] // new year
|
||||||
];
|
];
|
||||||
|
|
||||||
function handleVisibilityChange() {if (!d.hidden && new Date () - lastUpdate > 3000) requestJson();}
|
function handleVisibilityChange() {if (!d.hidden && new Date () - lastUpdate > 3000) requestJson();}
|
||||||
@ -1209,7 +1208,7 @@ function updateUI()
|
|||||||
if (hasRGB) {
|
if (hasRGB) {
|
||||||
updateTrail(gId('sliderR'));
|
updateTrail(gId('sliderR'));
|
||||||
updateTrail(gId('sliderG'));
|
updateTrail(gId('sliderG'));
|
||||||
updateTrail(gId('sliderB'));
|
updateTrail(gId('sliderB'));
|
||||||
}
|
}
|
||||||
if (hasWhite) updateTrail(gId('sliderW'));
|
if (hasWhite) updateTrail(gId('sliderW'));
|
||||||
|
|
||||||
@ -1700,7 +1699,7 @@ function toggleLiveview()
|
|||||||
let wsOn = ws && ws.readyState === WebSocket.OPEN;
|
let wsOn = ws && ws.readyState === WebSocket.OPEN;
|
||||||
|
|
||||||
var lvID = "liveview";
|
var lvID = "liveview";
|
||||||
if (isM && wsOn) {
|
if (isM && wsOn) {
|
||||||
lvID += "2D";
|
lvID += "2D";
|
||||||
if (isLv) gId('klv2D').innerHTML = `<iframe id="${lvID}" src="about:blank"></iframe>`;
|
if (isLv) gId('klv2D').innerHTML = `<iframe id="${lvID}" src="about:blank"></iframe>`;
|
||||||
gId('mlv2D').style.transform = (isLv) ? "translateY(0px)":"translateY(100%)";
|
gId('mlv2D').style.transform = (isLv) ? "translateY(0px)":"translateY(100%)";
|
||||||
@ -1887,7 +1886,7 @@ function makeP(i,pl)
|
|||||||
end: 0
|
end: 0
|
||||||
};
|
};
|
||||||
var rep = plJson[i].repeat ? plJson[i].repeat : 0;
|
var rep = plJson[i].repeat ? plJson[i].repeat : 0;
|
||||||
content =
|
content =
|
||||||
`<div id="ple${i}" style="margin-top:10px;"></div><label class="check revchkl">Shuffle
|
`<div id="ple${i}" style="margin-top:10px;"></div><label class="check revchkl">Shuffle
|
||||||
<input type="checkbox" id="pl${i}rtgl" onchange="plR(${i})" ${plJson[i].r||rep<0?"checked":""}>
|
<input type="checkbox" id="pl${i}rtgl" onchange="plR(${i})" ${plJson[i].r||rep<0?"checked":""}>
|
||||||
<span class="checkmark"></span>
|
<span class="checkmark"></span>
|
||||||
|
Loading…
Reference in New Issue
Block a user