Merge branch 'master' into ms-firefox-test

This commit is contained in:
Ian Gilman 2021-03-18 11:20:51 -07:00 committed by GitHub
commit 7a9e496c64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View File

@ -42,6 +42,8 @@ OPENSEADRAGON CHANGELOG
* Added dragToPan to the GestureSettings class, implemented in Viewer (#1956 @msalsbery)
* Added preventDefault option to MouseTracker handlers: scrollHandler, keyDownHandler, keyUpHandler, keyHandler (#1957 @msalsbery)
* Fixed test "Events: Viewer: preventDefaultAction in dblClickHandler". Fixes #1372 (#1960 @msalsbery)
* ReferenceStrip: Fixed issue where its element was being removed from its parent element twice on destroy, causing an exception (#1958 @msalsbery)
* ReferenceStrip: Made its element focusable for keyboard navigation (#1958 @msalsbery)
2.4.2:

View File

@ -96,6 +96,8 @@ $.ReferenceStrip = function ( options ) {
this.minPixelRatio = this.viewer.minPixelRatio;
this.element.tabIndex = 0;
style = this.element.style;
style.marginTop = '0px';
style.marginRight = '0px';
@ -281,7 +283,7 @@ $.ReferenceStrip.prototype = {
this.tracker.destroy();
if (this.element) {
this.element.parentNode.removeChild(this.element);
this.viewer.removeControl( this.element );
}
}
@ -305,6 +307,8 @@ function onStripClick( event ) {
this.viewer.goToPage( page );
}
this.element.focus();
}