function setScrollPosition ({left = 0, top = 0}) { console.log(left, top)}; setScrollPosition(undefined) This will have TypeError
@@ -3,7 +3,7 @@ import utils from './utils';
class FullScreen {
constructor (player) {
this.player = player;
-
+ this.lastScrollPosition = {left: 0, top: 0};
this.player.events.on('webfullscreen', () => {
this.player.resize();
});