Compare commits

..

No commits in common. "12402f2f0f21ac3e17567dc26cdfeaa607b794d0" and "bdb44d84fb59e1050e95f6f92613057c24371ba7" have entirely different histories.

2 changed files with 0 additions and 3 deletions

View File

@ -8,7 +8,6 @@ OPENSEADRAGON CHANGELOG
* Now supporting IIIF "id" and "identifier" in addition to "@id" (#2173 @ahankinson) * 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) * 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: 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: 3.1.0:

View File

@ -398,7 +398,6 @@ $.extend( $.Button.prototype, $.EventSource.prototype, /** @lends OpenSeadragon.
disable: function(){ disable: function(){
this.notifyGroupExit(); this.notifyGroupExit();
this.element.disabled = true; this.element.disabled = true;
this.tracker.setTracking(false);
$.setElementOpacity( this.element, 0.2, true ); $.setElementOpacity( this.element, 0.2, true );
}, },
@ -407,7 +406,6 @@ $.extend( $.Button.prototype, $.EventSource.prototype, /** @lends OpenSeadragon.
*/ */
enable: function(){ enable: function(){
this.element.disabled = false; this.element.disabled = false;
this.tracker.setTracking(true);
$.setElementOpacity( this.element, 1.0, true ); $.setElementOpacity( this.element, 1.0, true );
this.notifyGroupEnter(); this.notifyGroupEnter();
}, },