Skip to content

Instantly share code, notes, and snippets.

@hieptl
Last active October 13, 2021 06:55
Show Gist options
  • Save hieptl/a28826506f148ac51e4a488baf9874a2 to your computer and use it in GitHub Desktop.
Save hieptl/a28826506f148ac51e4a488baf9874a2 to your computer and use it in GitHub Desktop.
Util.js - Javascript Chat App
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