diff --git a/changelog.txt b/changelog.txt index c64c94dc..a8879cfc 100644 --- a/changelog.txt +++ b/changelog.txt @@ -25,6 +25,7 @@ OPENSEADRAGON CHANGELOG * New demos, demonstrating the new pipeline. New demos for older plugins to show how compatible new version is. * Misc: updated CSS for dev server, new dev & test commands. * New option: loadDestinationTilesOnAnimation. With it on, during animations, OSD loads tiles in the destination region, rather than the areas passed through on the way to the destination. This new feature is on by default. (#2686, #2690 @MichaelWGibson) +* Overlay wrapper elements now have a "openseadragon-overlay-wrapper" class. If the overlay element has an ID, the wrapper gets a variant on that ID, but if the overlay element does not have an ID, we no longer give the wrapper an ID. (#2698 @lokaesshwar) * Improved how OpenSeadragon is imported in various environments (#2644 @Aiosa) * Improved documentation (#2676 @bennlich) * Improved unit tests (#2640 @harshkg23) diff --git a/src/overlay.js b/src/overlay.js index 447e9c67..d55fb677 100644 --- a/src/overlay.js +++ b/src/overlay.js @@ -135,9 +135,9 @@ if (this.element.id) { 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); @@ -499,4 +499,4 @@ } }; -}(OpenSeadragon)); \ No newline at end of file +}(OpenSeadragon));