#671 closed defect (fixed)
Clicking on a disabled button throws a javascript error.
Reported by: | Owned by: | anonymous | |
---|---|---|---|
Priority: | high | Milestone: | |
Component: | Core | Version: | 0.2 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
To see example visit:
http://office.bensoft.com/dojo/demo/button_disable_problem.html
Error is on line 8040 of dojo.js 0.2.2. Line reads:
switch(_713.tagName.toLowerCase()){
Changing this to:
switch((_713.tagName) && _713.tagName.toLowerCase()){
Fixes the problem.
--Dave
Change History (3)
comment:1 Changed 15 years ago by
comment:2 Changed 15 years ago by
Milestone: | → 0.3release |
---|---|
Resolution: | → fixed |
Status: | new → closed |
I can't even find that line of code anymore. Pluswhich I tried your testcase and it's working now. Closing bug.
Note: See
TracTickets for help on using
tickets.
Problem only appears in IE 6, Tested with FF 1.5.0.2 and no problem appeared.