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

Commit d6fe722

Browse files
committed
fix(hint): properly clean up when location is changed before DOM content has been loaded
The `beforeunload` event was never fired is the location was changed before the DOM content had been loaded (e.g. directly inside a `<script>` tag. The `unload` event is fired more consistently. Fixes angular/batarang#290
1 parent 13107a5 commit d6fe722

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hint.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ else {
5454
/* angular should remove DEFER_LABEL from window.name, but if angular is never loaded, we want
5555
to remove it ourselves, otherwise hint will incorrectly detect protractor as being present on
5656
the next page load */
57-
window.addEventListener('beforeunload', function() {
57+
window.addEventListener('unload', function() {
5858
if (deferRegex.test(window.name)) {
5959
window.name = window.name.substring(DEFER_LABEL.length);
6060
}

0 commit comments

Comments
 (0)