Really no tabIndex if you pass "".

This commit is contained in:
Ian Gilman 2016-03-08 09:58:50 -08:00
parent 5ca04c56f7
commit 66f99a1d39

View File

@ -234,7 +234,9 @@ $.Viewer = function( options ) {
style.left = "0px";
}(this.canvas.style));
$.setElementTouchActionNone( this.canvas );
this.canvas.tabIndex = (options.tabIndex === undefined ? 0 : options.tabIndex);
if (options.tabIndex !== "") {
this.canvas.tabIndex = (options.tabIndex === undefined ? 0 : options.tabIndex);
}
//the container is created through applying the ControlDock constructor above
this.container.className = "openseadragon-container";