Compare commits

..

No commits in common. "449c709dccba5589179db388c859da6ef08b70fb" and "229bfe79464e03f088f6ceb897a3d9c8700d77f3" have entirely different histories.

2 changed files with 1 additions and 2 deletions

View File

@ -18,7 +18,6 @@ OPENSEADRAGON CHANGELOG
* Fixed an issue where full page mode wouldn't grow properly if you resized the window (#2100 @TanukiSharp)
* Tile cache keys are now generated by the tile source, so it's easier to override them as needed (#2138 @Aiosa)
* Now if you pass an error handler into makeAjaxRequest, it doesn't report errors into the console (#2142 @Aiosa)
* Fixed error caused by attaching MouseTracker to the page's document element (#2145 @tdiprima)
3.0.0:

View File

@ -1986,7 +1986,7 @@ function OpenSeadragon( options ){
*/
setElementPointerEvents: function( element, value ) {
element = $.getElement( element );
if (typeof element.style !== 'undefined' && typeof element.style.pointerEvents !== 'undefined' ) {
if ( typeof element.style.pointerEvents !== 'undefined' ) {
element.style.pointerEvents = value;
}
},