mirror of
https://github.com/openseadragon/openseadragon.git
synced 2025-04-03 22:03:31 +03:00
Merge pull request #2698 from lokaesshwar/duplicate_ids_overlay_html_2682
Duplicate ids overlay html 2682
This commit is contained in:
commit
6bdd186219
1 changed files with 5 additions and 4 deletions
|
@ -133,10 +133,11 @@
|
|||
this.elementWrapper.appendChild(this.element);
|
||||
|
||||
if (this.element.id) {
|
||||
this.elementWrapper.id = "overlay-wrapper-" + this.element.id;
|
||||
} else {
|
||||
this.elementWrapper.id = "overlay-wrapper";
|
||||
this.elementWrapper.id = "overlay-wrapper-" + this.element.id; // Unique ID if element has one
|
||||
}
|
||||
// Always add a class for styling & selection
|
||||
this.elementWrapper.classList.add("openseadragon-overlay-wrapper");
|
||||
|
||||
|
||||
this.style = this.elementWrapper.style;
|
||||
this._init(options);
|
||||
|
@ -498,4 +499,4 @@
|
|||
}
|
||||
};
|
||||
|
||||
}(OpenSeadragon));
|
||||
}(OpenSeadragon));
|
Loading…
Add table
Reference in a new issue