-
-
Notifications
You must be signed in to change notification settings - Fork 79k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"Fix: This is a fix for Clicking anywhere generates JS warnings in Firefox if a dropdown menu is present Issue #7318 #7692
Conversation
…efox iff a dropdown menu is present #7318
Closed per comment in #7318. |
@mdo I checked with v2.3.2 the problem is not fixed. I checked the diff there isnt anything to take care of the problem. The |
I see nothing in Firefox's (v21) built in console when clicking around the dropdowns at http://twitter.github.io/bootstrap/javascript.html#dropdowns. Can you confirm the steps to reproduce, and include a screenshot of the error happening? |
@mdo I have replied to your message. Forgot to tag you |
@mdo reproduced the problem on OSX too |
Its actually just a warning not an error. |
yeah this is non critical and doesn't warrant a patch release. it'll be addressed in 3.0.0 |
also the proposed patch here isn't the road we'd want to take |
sure that makes sense. |
Confirming this is still a bug in 3.0.3. |
When jQuery receives an empty id selector like this
$("#")
, it throws an error in firefox. This error is visible only in the web console provided by firefox. I was not able to see it in firebug console. I have just added a if statement as a workaround for it.Here is the diff
This is my first pull request hope I have done it right