Opened 12 years ago
Closed 12 years ago
#11115 closed defect (fixed)
dojox.widget.Standby: reference on self._underlayNode and self._centerNode in the_fadeOut-function is null
Reported by: | basketmc | Owned by: | Jared Jurkiewicz |
---|---|---|---|
Priority: | high | Milestone: | 1.5 |
Component: | DojoX Widgets | Version: | 1.4.2 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
Row 524:
incorrect line:
onEnd: function(){ dojo.style(self._underlayNode,{"display":"none", "zIndex": "-1000"}); }
correct line:
onEnd: function(){ dojo.style(this.node,{"display":"none", "zIndex": "-1000"}); }
Row 532:
incorrect line:
onEnd: function(){ dojo.style(self._centerNode,{"display":"none", "zIndex": "-1000"}); self.onHide(); self._enableOverflow(); }
correct line:
onEnd: function(){ dojo.style(this.node,{"display":"none", "zIndex": "-1000"}); self.onHide(); self._enableOverflow(); }
Change History (2)
comment:1 Changed 12 years ago by
Owner: | changed from dante to Jared Jurkiewicz |
---|
comment:2 Changed 12 years ago by
Milestone: | → 1.5 |
---|---|
Resolution: | → fixed |
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
They're actually not null and work fine. But using this.node is probably better anyway. Changes made in changeset: [22282]