mirror of
https://github.com/openseadragon/openseadragon.git
synced 2025-04-03 13:53:31 +03:00
Merge pull request #1119 from leesei/master
fix: overlay size calculation
This commit is contained in:
commit
8103cc54d1
1 changed files with 2 additions and 1 deletions
|
@ -248,6 +248,8 @@
|
|||
element.prevNextSibling = element.nextSibling;
|
||||
container.appendChild(element);
|
||||
|
||||
// have to set position before calculating size, fix #1116
|
||||
this.style.position = "absolute";
|
||||
// this.size is used by overlays which don't get scaled in at
|
||||
// least one direction when this.checkResize is set to false.
|
||||
this.size = $.getElementSize(element);
|
||||
|
@ -286,7 +288,6 @@
|
|||
style[transformProp] = "";
|
||||
}
|
||||
}
|
||||
style.position = "absolute";
|
||||
|
||||
if (style.display !== 'none') {
|
||||
style.display = 'block';
|
||||
|
|
Loading…
Add table
Reference in a new issue