Opened 13 years ago
Closed 13 years ago
#6049 closed defect (fixed)
[patch][cla] dojox.flash.setSwf problem with visibility
Reported by: | guest | Owned by: | bradneuberg |
---|---|---|---|
Priority: | high | Milestone: | 1.2 |
Component: | Storage/Flash | Version: | 1.1b1 |
Keywords: | flash visible visibility | Cc: | [email protected]… |
Blocked By: | Blocking: |
Description (last modified by )
when setting the visible parameter of the setSwf method to false, the applet is shown anyway. This problem involves these lines in _common.js (lines 316-318)
if(fileInfo["visible"]){ this._visible = fileInfo.visible; }
Changing it to this fixes it:
if(fileInfo["visible"] !== null){ this._visible = fileInfo.visible; }
Change History (3)
comment:1 Changed 13 years ago by
Milestone: | → 1.2 |
---|
comment:2 Changed 13 years ago by
Description: | modified (diff) |
---|---|
Summary: | dojox.flash.setSwf problem with visibility → [patch][cla] dojox.flash.setSwf problem with visibility |
comment:3 Changed 13 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
The patch wasn't correct, but I fixed the underlying problem. Closing.