Opened 11 years ago
Closed 9 years ago
#14150 closed defect (wontfix)
Uploader - focus breaks IE7
Reported by: | Mike Wilcox | Owned by: | Mike Wilcox |
---|---|---|---|
Priority: | high | Milestone: | 2.0 |
Component: | DojoX Uploader | Version: | 1.6.1 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
From a Club AJAX user: The focus connect in the flash plugin is creating issue for our IE7 customers, throwing the error, A runtime error has occurred...‘ this.flashMovie’ is null or not an object”
Removing the connect on focus in the flash plugin appears to resolve the issue, but what happens to the user experience by doing so?
//this.connect(this.domNode,”focus”,function(){ //this.flashMovie.focus(); //this.flashMovie.doFocus(); //});
My suggested fix will be to check if the movie exists:
this.connect(this.domNode,”focus”,function(){ if(!this.flashMovie){ return; } this.flashMovie.focus(); this.flashMovie.doFocus(); });
This way, we should maintain at least a bit of accessibility in other browsers - as much as this works at all with Flash.
Change History (2)
comment:1 Changed 10 years ago by
Milestone: | 1.8 → 2.0 |
---|
comment:2 Changed 9 years ago by
Resolution: | → wontfix |
---|---|
Status: | new → closed |
Given the decline of IE7, probably this won't be fixed.
Note: See
TracTickets for help on using
tickets.
1.8 has been tagged; moving all outstanding tickets to next major release milestone.