flimshaw / Valiant360

An in-browser 360 degree panorama video player.
http://flimshaw.github.io/Valiant360/
MIT License
777 stars 151 forks source link

Fullscreen #50

Open mrtnRitter opened 8 years ago

mrtnRitter commented 8 years ago

After returning from fullscreen, the video disappear. This is because canvas dimensions are 0. Somehow, this._originalWidth (line 178 and following) return "null".

I've changed these lines to: this._originalWidth = $(document).find('div').width();
this._originalHeight = $(document).find('div').height();

It works.