mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-23 21:56:10 +03:00
Compare commits
4 Commits
bdb44d84fb
...
12402f2f0f
Author | SHA1 | Date | |
---|---|---|---|
|
12402f2f0f | ||
|
dafcf7bc14 | ||
|
45643b94e3 | ||
|
6d5a75bcf7 |
@ -8,6 +8,7 @@ OPENSEADRAGON CHANGELOG
|
||||
* Now supporting IIIF "id" and "identifier" in addition to "@id" (#2173 @ahankinson)
|
||||
* We now delegate tile fetching and caching to the TileSource, to allow for custom tile formats (#2148 @Aiosa)
|
||||
* Fixed: Cropping tiled images with polygons was broken (#2183 @altert)
|
||||
* Fixed: Disabling buttons only changed their appearance, but they were still clickable (#2187 @pearcetm)
|
||||
|
||||
3.1.0:
|
||||
|
||||
|
@ -398,6 +398,7 @@ $.extend( $.Button.prototype, $.EventSource.prototype, /** @lends OpenSeadragon.
|
||||
disable: function(){
|
||||
this.notifyGroupExit();
|
||||
this.element.disabled = true;
|
||||
this.tracker.setTracking(false);
|
||||
$.setElementOpacity( this.element, 0.2, true );
|
||||
},
|
||||
|
||||
@ -406,6 +407,7 @@ $.extend( $.Button.prototype, $.EventSource.prototype, /** @lends OpenSeadragon.
|
||||
*/
|
||||
enable: function(){
|
||||
this.element.disabled = false;
|
||||
this.tracker.setTracking(true);
|
||||
$.setElementOpacity( this.element, 1.0, true );
|
||||
this.notifyGroupEnter();
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user