[patch] dojox.av.FLAudio: Delegate any Flash embedding errors to onError()
The FLAudio component does have its own "onError" handler, but Flash embedding errors returned by dojox.embed.Flash are not delegated to it. They instead get directly logged to the console right now.
I think that should be changed so one can react to these errors too.
So line 129 of dojox/av/FLAudio.js shoukd be changed from:
this._flashObject.onError = function(err){
console.warn("Flash Error:", err);
};
to:
this._flashObject.onError = dojo.hitch(this, this.onError);
Change History (9)
Cc: |
Tom Trenka added
|
Owner: |
changed from Adam Peller to Mike Wilcox
|
Owner: |
changed from Mike Wilcox to dylan
|
Status: |
new →
assigned
|
Resolution: |
→ fixed
|
Status: |
assigned →
closed
|
Milestone: |
future →
1.7.9
|
In b721c4799b1706d5bd5433fc333fc1c8dbd2d402/dojox: