Skip to content

Commit

Permalink
fix(FEC-9026): [Player_V3][Flash] - When clicking fullscreen icon in …
Browse files Browse the repository at this point in the history
…flash, the player area stays in the same size

Fullscreen will apply to kaltura container instead user container.
  • Loading branch information
Yuvalke authored Apr 8, 2019
1 parent 46b87ed commit 8d64b78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kaltura-player.js
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ class KalturaPlayer extends FakeEventTarget {
}

enterFullscreen(fullScreenElementId: ?string): void {
const elementId = fullScreenElementId ? fullScreenElementId : this.config.targetId;
const elementId = fullScreenElementId ? fullScreenElementId : this.config.ui.targetId;
this._localPlayer.enterFullscreen(elementId);
}

Expand Down

0 comments on commit 8d64b78

Please sign in to comment.