From 4f46dc999b9fd3f26b6586d06d099d7039ca35c8 Mon Sep 17 00:00:00 2001 From: Benjamin Gruenbaum Date: Thu, 26 Nov 2020 23:27:55 +0200 Subject: fix: "onload" event order (#8376) This commit fixes order of events for "onload" event. Previously handler attached using "window.onload" was always fired before handlers added using "addEventListener". --- docs/runtime/program_lifecycle.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/runtime/program_lifecycle.md') diff --git a/docs/runtime/program_lifecycle.md b/docs/runtime/program_lifecycle.md index 7f6035048..f0ebbd448 100644 --- a/docs/runtime/program_lifecycle.md +++ b/docs/runtime/program_lifecycle.md @@ -61,12 +61,12 @@ major difference between them, let's run the example: $ deno run main.ts log from imported script log from main script -got load event in onload function (main) got load event in event handler (imported) got load event in event handler (main) -got unload event in onunload function (main) +got load event in onload function (main) got unload event in event handler (imported) got unload event in event handler (main) +got unload event in onunload function (main) ``` All listeners added using `window.addEventListener` were run, but -- cgit v1.2.3