Jshint.com is giving the error:
Line 36: var signin_found; Missing “use strict” statement.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Add “use strict” at the top of your js file (at line 1 of your .js file):
More about “use strict” in another question here on stackoverflow:
What does "use strict" do in JavaScript, and what is the reasoning behind it?
UPDATE.
There is something wrong with jshint.com, it requires you to put “use strict” inside each function, but it should be allowed to set it globally for each file.
jshint.com thinks this is wrong.
But there is nothing wrong with it…
It wants you to put “use strict” to each function:
Then it says: