mirror of
https://github.com/openseadragon/openseadragon.git
synced 2025-04-04 06:13:31 +03:00
update expression
Code fails if element.style is undefined.
This commit is contained in:
parent
2d7be96bdf
commit
e1b651b66c
1 changed files with 1 additions and 1 deletions
|
@ -1986,7 +1986,7 @@ function OpenSeadragon( options ){
|
|||
*/
|
||||
setElementPointerEvents: function( element, value ) {
|
||||
element = $.getElement( element );
|
||||
if ( typeof element.style.pointerEvents !== 'undefined' ) {
|
||||
if (typeof element.style !== 'undefined' && typeof element.style.pointerEvents !== 'undefined' ) {
|
||||
element.style.pointerEvents = value;
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Add table
Reference in a new issue