Closed PaliwalSparsh closed 7 years ago
https://github.com/NIT-dgp/chrome-search-extension/blob/master/popup.js#L7 https://github.com/NIT-dgp/chrome-search-extension/blob/master/popup.js#L11 https://github.com/NIT-dgp/chrome-search-extension/blob/master/popup.js#L15
On these three lines go and change the == of comparison to ===
if(document.getElementById("music").checked == true) to if(document.getElementById("music").checked === true)
if(document.getElementById("music").checked == true)
if(document.getElementById("music").checked === true)
NOTE: For newcomers only. If you have already got 1 commit merged please don't attempt this issue.
https://github.com/NIT-dgp/chrome-search-extension/blob/master/popup.js#L7 https://github.com/NIT-dgp/chrome-search-extension/blob/master/popup.js#L11 https://github.com/NIT-dgp/chrome-search-extension/blob/master/popup.js#L15
On these three lines go and change the == of comparison to ===
if(document.getElementById("music").checked == true)
toif(document.getElementById("music").checked === true)
NOTE: For newcomers only. If you have already got 1 commit merged please don't attempt this issue.