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();
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.