Skip to content

Instantly share code, notes, and snippets.

@zuzannamj
Created March 27, 2020 22:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zuzannamj/f5306dcfc94bd46f947d7406263360f8 to your computer and use it in GitHub Desktop.
Save zuzannamj/f5306dcfc94bd46f947d7406263360f8 to your computer and use it in GitHub Desktop.
<script>
function showSpinner() {
$spinner = document.getElementsByClassName("slds-spinner_container")[0];
$spinner.style.display = "block";
setTimeout(() => {
$spinner.style.display = "none";
}, 5000);
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment