Changes between Initial Version and Version 2 of Ticket #6725
- Timestamp:
- Jun 25, 2010, 5:36:27 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #6725 – Description
initial v2 2 2 3 3 Original Code: 4 {{{ 4 5 // Override the abort handler, if we can (IE doesn't allow it, but that's OK) 5 6 // Opera doesn't fire onreadystatechange at all on abort … … 14 15 }; 15 16 } catch(e) { } 16 17 }}} 17 18 Fixed Code: 19 {{{ 18 20 // Override the abort handler, if we can (IE doesn't allow it, but that's OK) 19 21 // Opera doesn't fire onreadystatechange at all on abort … … 28 30 }; 29 31 } catch(e) { } 32 }}}