Created
March 27, 2020 22:05
-
-
Save zuzannamj/f5306dcfc94bd46f947d7406263360f8 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<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