mirror of
https://github.com/openseadragon/openseadragon.git
synced 2025-04-03 13:53:31 +03:00
Changelog and minor fixes for #2698
This commit is contained in:
parent
6bdd186219
commit
8f093f54df
2 changed files with 3 additions and 2 deletions
|
@ -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)
|
||||
|
|
|
@ -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));
|
||||
}(OpenSeadragon));
|
||||
|
|
Loading…
Add table
Reference in a new issue