NITDgpOS / Fearch

This is a chrome extension where we can search music,video and books over ftp servers. You can add it to your chrome using this link -
https://chrome.google.com/webstore/search/fearch
MIT License
37 stars 37 forks source link

Remove "==" for "===" #31

Closed PaliwalSparsh closed 7 years ago

PaliwalSparsh commented 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)

NOTE: For newcomers only. If you have already got 1 commit merged please don't attempt this issue.