mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-23 07:47:54 +00:00
mermaid: reset zoom correctly #690
This commit is contained in:
parent
76eeaa5066
commit
292e261617
1 changed files with 2 additions and 2 deletions
|
@ -318,7 +318,7 @@ function initMermaid( update, attrs ) {
|
|||
svgs.each( function(){
|
||||
var svg = d3.select( this );
|
||||
svg.html( '<g>' + svg.html() + '</g>' );
|
||||
var inner = svg.select( 'g' );
|
||||
var inner = svg.select( '*:scope > g' );
|
||||
var zoom = d3.zoom().on( 'zoom', function( e ){
|
||||
inner.attr( 'transform', e.transform );
|
||||
});
|
||||
|
@ -331,7 +331,7 @@ function initMermaid( update, attrs ) {
|
|||
parent.insertAdjacentHTML( 'beforeend', '<span class="svg-reset-button" title="' + window.T_Reset_view + '"><i class="fas fa-undo-alt"></i></span>' );
|
||||
var button = parent.querySelector( '.svg-reset-button' );
|
||||
button.addEventListener( 'click', function( event ){
|
||||
inner.transition()
|
||||
svg.transition()
|
||||
.duration( 350 )
|
||||
.call( zoom.transform, d3.zoomIdentity );
|
||||
this.setAttribute( 'aria-label', window.T_View_reset );
|
||||
|
|
Loading…
Reference in a new issue