changelog update

This commit is contained in:
Mark Salsbery 2020-08-13 10:09:17 -07:00
parent e74d83f104
commit 5a9874e4fa
2 changed files with 7 additions and 3 deletions

View File

@ -22,6 +22,9 @@ OPENSEADRAGON CHANGELOG
* Added pointerType property to Viewer container-enter, container-exit, canvas-drag, canvas-drag-end, canvas-pinch events
* MouseTracker: Fire dragEndHandler event even if release point same as initial contact point (#1459)
* MouseTracker: Pointer capture implemented with capture APIs where available. Only fallback to emulated capture on extremely old browsers
* MouseTracker: Added preProcessEventHandler option to allow MouseTracker instances to control bubbling and default behavior of events on their associated element
* Updated Viewer, Button, Drawer, Navigator, ReferenceStrip DOM for proper DOM event handling
* Added OpenSeadragon.setElementPointerEventsNone() for setting pointer-events:'none' on DOM elements
2.4.2:

View File

@ -4218,10 +4218,11 @@
if ( updateGPoint ) {
stopTrackingPointer( pointsList, updateGPoint );
} else {
// should never get here?
$.console.warn('updatePointerUp(): pointerup on untracked gPoint');
}
//else {
// // should never get here?
// $.console.warn('updatePointerCancel(): pointercancel on untracked gPoint');
//}
}