Side navigation
#6545 closed bug (invalid)
Opened May 07, 2010 11:00AM UTC
Closed May 07, 2010 05:10PM UTC
bug in jquery-1.4.2.min.js
| Reported by: | janson | Owned by: | |
|---|---|---|---|
| Priority: | Milestone: | 1.4.3 | |
| Component: | core | Version: | 1.4.2 |
| Keywords: | undefined | Cc: | |
| Blocked by: | Blocking: |
Description
in expression:
if(i||k.test(u.namespace)){...}
firefox report: "u is undefined"
fixed by myself:
if(u && u.namespace && (i||k.test(u.namespace))){...}
Attachments (0)
Change History (1)
Changed May 07, 2010 05:10PM UTC by comment:1
| resolution: | → invalid |
|---|---|
| status: | new → closed |
Please reopen and attach a test case.