Hello I am a noob to famo.us and would like to be notified for events like on window load using the famo.us package
the only way I currently get this functionality, is like this:
Engine.on('postrender', function(e){
console.log('postrendder');
});
I could get this by looking at the events emitted by Engine.js in the core package.
The problem I have is this event is emitted for at the FPS of engine which is > 60fps. In other words this event is raised not on window load but as long as the page is alive at >60fps.
How can I get a window load event ?
UPDATE:
link here shows that you can register for DOM events but when I register for onload or loaded they are not fired.
This can be tested here : test