i2ml / Portail_saad

Should not have unused variables JS-0128
Bug risk
Major
3 occurrences in this check
'closeModal' is defined but never used. Allowed unused vars must match /^_/u
 6/**
 7 * @description Close the notification
 8 */
 9function closeModal() {10    Notification.style.transform = "translateX(150%)";
11    Notification.classList.remove("hidden");
12}
'toggle' is defined but never used. Allowed unused vars must match /^_/u
 91	return url.substring(hashPos + 1);
 92}
 93
 94function toggle(elem) 95{
 96	elem = document.getElementById(elem);
 97
'init' is defined but never used. Allowed unused vars must match /^_/u
  3var tabLinks    = new Array();
  4var contentDivs = new Array();
  5
  6function init()  7{
  8	// Grab the tab links and content divs from the page
  9	var tabListItems = document.getElementById('tabs').childNodes;