Index: trunk/extensions/UploadWizard/resources/jquery/jquery.mwCoolCats.js |
— | — | @@ -23,9 +23,10 @@ |
24 | 24 | 'fetch': _fetchSuggestions, |
25 | 25 | 'cancel': function() { |
26 | 26 | var req = $j( this ).data( 'request' ); |
27 | | - if ( req.abort ) { |
| 27 | + // XMLHttpRequest.abort is unimplemented in IE6, also returns nonstandard value of "unknown" for typeof |
| 28 | + if ( req && ( typeof req.abort !== 'unknown' ) && ( typeof req.abort !== 'undefined' ) && req.abort ) { |
28 | 29 | req.abort(); |
29 | | - } |
| 30 | + } |
30 | 31 | } |
31 | 32 | } ); |
32 | 33 | _this.suggestions(); |