i2ml / Portail_saad

Avoid use of == and != JS-0050
Anti-pattern
Minor
6 occurrences in this check
Expected '===' and instead saw '=='
112	}
113
114	// Toggle the state of the "display" style
115	elem.style.display = disp == 'block' ? 'none' : 'block';116
117	return false;
118}
Expected '===' and instead saw '=='
 78{
 79	for (var i = 0; i < element.childNodes.length; i ++)
 80	{
 81		if (element.childNodes[i].nodeName == tagName) 82		{
 83			return element.childNodes[i];
 84		}
Expected '===' and instead saw '=='
 58	// Also show the selected content div, and hide all others.
 59	for (var id in contentDivs)
 60	{
 61		if (id == selectedId) 62		{
 63			tabLinks[id].className    = 'active';
 64			contentDivs[id].className = 'content';
Expected '!==' and instead saw '!='
 41
 42	for (var id in contentDivs)
 43	{
 44		if (i != 0) 45		{
 46			console.log(contentDivs[id]);
 47			contentDivs[id].className = 'content hide';
Expected '===' and instead saw '=='
 29		tabLinks[id].onfocus = function () {
 30			this.blur()
 31		};
 32		if (i == 0) 33		{
 34			tabLinks[id].className = 'active';
 35		}
Expected '===' and instead saw '=='
 10	console.log(tabListItems);
 11	for (var i = 0; i < tabListItems.length; i ++)
 12	{
 13		if (tabListItems[i].nodeName == "LI") 14		{
 15			var tabLink     = getFirstChildWithTagName(tabListItems[i], 'A');
 16			var id          = getHash(tabLink.getAttribute('href'));