Changes between Initial Version and Version 1 of Ticket #6891
- Timestamp:
- Jun 4, 2008, 10:19:04 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #6891
- Property Cc [email protected]… removed
- Property Owner changed from anonymous to James Burke
-
Property
Milestone
changed from
to
1.2
- Property Reporter changed from guest to [email protected]…
-
Ticket #6891 – Description
initial v1 1 1 in the startup() of my dijit, I do 2 2 {{{ 3 3 dojo.addOnload(this, method) 4 4 dojo.addOnUnload(this, method); 5 5 }}} 6 6 the onloads work great. The onunload works great in Firefox. In IE, the onunload only fires when I explicitly hit "reload / refresh" (f5) and not when I use links to navigate on this page. I had to get around this by doing a dojo.connect in the main addOnload in the page, connecting window, onunload to my function. Any clues?