jamescolin

Changer les icônes des modules dans un espace membre SystemeIO

Nov 27th, 2021 (edited)
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2. // Les espaces membres SystemeIO du futur - https://sio.tapezinfo.com/espace
  3. //
  4. // Offres SystemeIO : https://docs.google.com/spreadsheets/d/1PHgDSNi5SMogWF-TJ6brncT1c9VJOB_W4pvveXGN2lQ/edit?usp=sharing
  5. // Fontawesome (icones) : https://fontawesome.com/v5/cheatsheet
  6. // BONUS : 10 groupes de pub Facebook : https://tapezinfo.com/groupes
  7.  
  8. // changer les icônes des modules dans un espace membre SystemeIO
  9. var x = document.querySelectorAll(".course-info__module-title-icon");
  10. var i;
  11. for (i = 0; i < x.length; i++) {
  12.   x[i].innerHTML = '<i class="fas fa-users-class"></i>';
  13. }
  14. </script>
  15.  
Add Comment
Please, Sign In to add comment