Skip to content

Instantly share code, notes, and snippets.

@desoga10
Created October 6, 2020 01:28
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 desoga10/56b1d8e7e4fcb8b21d6a3dc99e251e2d to your computer and use it in GitHub Desktop.
Save desoga10/56b1d8e7e4fcb8b21d6a3dc99e251e2d to your computer and use it in GitHub Desktop.
var modal = null
function pop() {
if(modal === null) {
document.getElementById("box").style.display = "block";
modal = true
} else {
document.getElementById("box").style.display = "none";
modal = null
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment