Skip to content

Instantly share code, notes, and snippets.

@hieptl
Created September 28, 2021 09:18
Show Gist options
  • Save hieptl/27c789681451c49e7239b7d96a99f674 to your computer and use it in GitHub Desktop.
Save hieptl/27c789681451c49e7239b7d96a99f674 to your computer and use it in GitHub Desktop.
util.js - Client Side - Tinder Clone
const loading = document.getElementById('loading');
function hideLoading() {
loading.classList.add('loading--hide');
}
function showLoading() {
loading.classList.remove('loading--hide');
loading.classList.add('loading--active');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment