mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-25 22:56:11 +03:00
Changed full page sizing to 100vw/100vh instead of compute fixed size (issue 2099)
This commit is contained in:
parent
2c9d244023
commit
99f73c548c
@ -1041,8 +1041,8 @@ $.extend( $.Viewer.prototype, $.EventSource.prototype, $.ControlDock.prototype,
|
|||||||
$.addClass( this.element, 'fullpage' );
|
$.addClass( this.element, 'fullpage' );
|
||||||
body.appendChild( this.element );
|
body.appendChild( this.element );
|
||||||
|
|
||||||
this.element.style.height = $.getWindowSize().y + 'px';
|
this.element.style.height = '100vh';
|
||||||
this.element.style.width = $.getWindowSize().x + 'px';
|
this.element.style.width = '100vw';
|
||||||
|
|
||||||
if ( this.toolbar && this.toolbar.element ) {
|
if ( this.toolbar && this.toolbar.element ) {
|
||||||
this.element.style.height = (
|
this.element.style.height = (
|
||||||
|
Loading…
Reference in New Issue
Block a user