mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-28 08:06:08 +03:00
Compare commits
4 Commits
c470e7effd
...
ed66c2d151
Author | SHA1 | Date | |
---|---|---|---|
|
ed66c2d151 | ||
|
af564547f0 | ||
|
aec24d6dd7 | ||
|
476657ecad |
@ -13,7 +13,7 @@ OPENSEADRAGON CHANGELOG
|
|||||||
* Fixed: Cropping tiled images with polygons was broken (#2183 @altert)
|
* Fixed: Cropping tiled images with polygons was broken (#2183 @altert)
|
||||||
* Fixed: Disabling buttons only changed their appearance, but they were still clickable (#2187 @pearcetm)
|
* Fixed: Disabling buttons only changed their appearance, but they were still clickable (#2187 @pearcetm)
|
||||||
* Fixed: ImageTileSource produced an error having to do with getTileHashKey (#2190 @Aiosa)
|
* Fixed: ImageTileSource produced an error having to do with getTileHashKey (#2190 @Aiosa)
|
||||||
* Fixed: On startup you would get an unnecessary "Viewer.buttons is deprecated" warning (#2201 @joedf, #2219 @jssullivan)
|
* Fixed: On startup you would get an unnecessary "Viewer.buttons is deprecated" warning (#2201 @joedf, #2219 @jssullivan, #2212 @joedf)
|
||||||
|
|
||||||
3.1.0:
|
3.1.0:
|
||||||
|
|
||||||
|
@ -1102,12 +1102,18 @@ function OpenSeadragon( options ){
|
|||||||
// Extend the base object
|
// Extend the base object
|
||||||
for ( name in options ) {
|
for ( name in options ) {
|
||||||
var descriptor = Object.getOwnPropertyDescriptor(options, name);
|
var descriptor = Object.getOwnPropertyDescriptor(options, name);
|
||||||
|
|
||||||
|
if (descriptor !== undefined) {
|
||||||
if (descriptor.get || descriptor.set) {
|
if (descriptor.get || descriptor.set) {
|
||||||
Object.defineProperty(target, name, descriptor);
|
Object.defineProperty(target, name, descriptor);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
copy = descriptor.value;
|
copy = descriptor.value;
|
||||||
|
} else {
|
||||||
|
$.console.warn('Could not copy inherited property "' + name + '".');
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
// Prevent never-ending loop
|
// Prevent never-ending loop
|
||||||
if ( target === copy ) {
|
if ( target === copy ) {
|
||||||
|
Loading…
Reference in New Issue
Block a user