File "javascript.js"

Full Path: /home/scheduling/public_html/faculty/javascript.js
File size: 307 bytes
MIME-type: text/plain
Charset: utf-8

 // Hide the loader once the page is fully loaded
 window.onload = function() {
    document.getElementById('loader').style.display = 'none';
  };

  document.getElementById('sidebarToggle').addEventListener('click', function() {
    document.querySelector('.sidebar').classList.toggle('show');
  });