mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-23 21:56:10 +03:00
Compare commits
No commits in common. "449c709dccba5589179db388c859da6ef08b70fb" and "229bfe79464e03f088f6ceb897a3d9c8700d77f3" have entirely different histories.
449c709dcc
...
229bfe7946
@ -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:
|
||||
|
||||
|
@ -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;
|
||||
}
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user