Changes between Initial Version and Version 2 of Ticket #3114
- Timestamp:
- Mar 20, 2009, 6:24:22 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3114
- Property Cc mike890 added
- Property Keywords Confirmed IE added; onbeforeunload removed
-
Ticket #3114 – Description
initial v2 1 1 In V2 it worked fine but in V3 opening of the toolbar dropdown controls fires the windiw.onbeforeunload. To reproduce this bug simply add the following JS code and try to open a toolbar dropdown. Probably it happens because the new version uses IFrame for the dropdown content. 2 2 3 {{{ 3 4 <script> 4 5 window.onbeforeunload = function() { … … 8 9 } 9 10 </script> 11 }}}