scripts.js 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*!
  2. * Start Bootstrap - SB Admin v7.0.7 (https://startbootstrap.com/template/sb-admin)
  3. * Copyright 2013-2023 Start Bootstrap
  4. * Licensed under MIT (https://github.com/StartBootstrap/startbootstrap-sb-admin/blob/master/LICENSE)
  5. */
  6. //
  7. // Scripts
  8. //
  9. window.addEventListener('DOMContentLoaded', event => {
  10. // Toggle the side navigation
  11. const sidebarToggle = document.body.querySelector('#sidebarToggle');
  12. if (sidebarToggle) {
  13. // Uncomment Below to persist sidebar toggle between refreshes
  14. // if (localStorage.getItem('sb|sidebar-toggle') === 'true') {
  15. // document.body.classList.toggle('sb-sidenav-toggled');
  16. // }
  17. sidebarToggle.addEventListener('click', event => {
  18. event.preventDefault();
  19. document.body.classList.toggle('sb-sidenav-toggled');
  20. localStorage.setItem('sb|sidebar-toggle', document.body.classList.contains('sb-sidenav-toggled'));
  21. });
  22. }
  23. });
  24. // // Fonction pour ouvrir la fenêtre pop-up
  25. // function openPopup() {
  26. // document.getElementById('popup').style.display = 'block';
  27. // }
  28. // // Fonction pour fermer la fenêtre pop-up
  29. // function closePopup() {
  30. // document.getElementById('popup').style.display = 'none';
  31. // }
  32. // function redirectToInfos(id) {
  33. // window.location.href = 'intra/infos.php?id=' + id;
  34. // }