function swap(newView, oldView) { | |
var newView = document.getElementById(newView), | |
oldView = document.getElementById(oldView), | |
viewWrapper = document.getElementById("viewWrapper"); | |
oldView.classList.remove("current-view"); | |
newView.classList.add("current-view"); | |
viewWrapper.appendChild(newView); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment