Launch HTML5 player in full screen?

Is there a way to have the HTML5 player launch in full screen view by default?

If the platform where the content is stored launches it in a popup window in project properties> event, you can add the following code java script

window.moveTo(0,0);
window.resizeTo(screen.availWidth, screen.availHeight);

This way after loading, the content will be adjusted to full size

Thanks Fabian! I will try this solution the next time I upload content to the LMS server.