This commit is contained in:
Edward Silverton 2025-03-28 12:51:33 -04:00 committed by GitHub
commit cbda3e14fc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -261,6 +261,11 @@ $.Viewer = function( options ) {
}
this.element = this.element || document.getElementById( this.id );
if (!this.element) {
return;
}
this.canvas = $.makeNeutralElement( "div" );
this.canvas.className = "openseadragon-canvas";