Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

I discovered that IE7 and IE8 throw a javascript error on delete window[... #649

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ function Browser(window, document, body, XHR, $log, $sniffer) {
} else {
completeOutstandingRequest(callback);
}
delete window[callbackId];
window[callbackId] = null;//IE7 IE8 don't like delete window[callbackId];
body[0].removeChild(script);
});
} else {
Expand Down