threepenny-gui icon indicating copy to clipboard operation
threepenny-gui copied to clipboard

Adding onload event?

Open bradrn opened this issue 6 years ago • 1 comments

At the moment, there seems to be no way to add a handler for the onload event to the body; while you can do it using do { b <- getBody; on (domEvent "load") b $ _ }, the handler only seems to be added after the body has already loaded.

bradrn avatar Oct 14 '18 23:10 bradrn

Hm, that's tricky. The body is initially empty and populated with elements only due to actions performed by the final argument to startGUI. So, by the time your Haskell code runs, the body is already loaded.

What do you need the onload event for, specifically?

HeinrichApfelmus avatar Jun 01 '20 22:06 HeinrichApfelmus