mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-24 06:06:09 +03:00
Compare commits
No commits in common. "12402f2f0f21ac3e17567dc26cdfeaa607b794d0" and "bdb44d84fb59e1050e95f6f92613057c24371ba7" have entirely different histories.
12402f2f0f
...
bdb44d84fb
@ -8,7 +8,6 @@ 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,7 +398,6 @@ $.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 );
|
||||
},
|
||||
|
||||
@ -407,7 +406,6 @@ $.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