14 lines
693 B
JavaScript
14 lines
693 B
JavaScript
|
// if javascript is enabled, this script will load, enabling all site elements that use javascript, by default these are all hidden.
|
||
|
function jsEnabled() {
|
||
|
// Get JS required element ids
|
||
|
const lastFmWidget = document.getElementById("lastfm-widget");
|
||
|
const ntfyWidgetContainer = document.getElementById("ntfyWidgetContainer");
|
||
|
const sgaButton = document.getElementById("sgaButton");
|
||
|
const incrementButton = document.getElementById("incrementButton");
|
||
|
|
||
|
// enable js required element ids
|
||
|
lastFmWidget.style.display = "initial";
|
||
|
ntfyWidgetContainer.style.display = "initial";
|
||
|
sgaButton.style.display = "initial";
|
||
|
incrementButton.style.display = "initial";
|
||
|
}
|