mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-24 22:26:10 +03:00
Merge pull request #1995 from thewilkybarkid/fullscreen-display
Force the display of body to be block when fullscreen
This commit is contained in:
commit
2d3c50065d
@ -1000,6 +1000,9 @@ $.extend( $.Viewer.prototype, $.EventSource.prototype, $.ControlDock.prototype,
|
|||||||
bodyStyle.height = "100%";
|
bodyStyle.height = "100%";
|
||||||
docStyle.height = "100%";
|
docStyle.height = "100%";
|
||||||
|
|
||||||
|
this.bodyDisplay = bodyStyle.display;
|
||||||
|
bodyStyle.display = "block";
|
||||||
|
|
||||||
//when entering full screen on the ipad it wasn't sufficient to leave
|
//when entering full screen on the ipad it wasn't sufficient to leave
|
||||||
//the body intact as only only the top half of the screen would
|
//the body intact as only only the top half of the screen would
|
||||||
//respond to touch events on the canvas, while the bottom half treated
|
//respond to touch events on the canvas, while the bottom half treated
|
||||||
@ -1064,6 +1067,8 @@ $.extend( $.Viewer.prototype, $.EventSource.prototype, $.ControlDock.prototype,
|
|||||||
bodyStyle.height = this.bodyHeight;
|
bodyStyle.height = this.bodyHeight;
|
||||||
docStyle.height = this.docHeight;
|
docStyle.height = this.docHeight;
|
||||||
|
|
||||||
|
bodyStyle.display = this.bodyDisplay;
|
||||||
|
|
||||||
body.removeChild( this.element );
|
body.removeChild( this.element );
|
||||||
nodes = this.previousBody.length;
|
nodes = this.previousBody.length;
|
||||||
for ( i = 0; i < nodes; i++ ) {
|
for ( i = 0; i < nodes; i++ ) {
|
||||||
|
Loading…
Reference in New Issue
Block a user