mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-27 09:43:06 +00:00
mermaid: fix broken zoom since update to v10 #608
This commit is contained in:
parent
3dada8b058
commit
e837822172
1 changed files with 17 additions and 12 deletions
|
@ -277,7 +277,8 @@ function initMermaid( update, attrs ) {
|
||||||
var is_initialized = ( update ? update_func( attrs ) : init_func( attrs ) );
|
var is_initialized = ( update ? update_func( attrs ) : init_func( attrs ) );
|
||||||
if( is_initialized ){
|
if( is_initialized ){
|
||||||
mermaid.initialize( Object.assign( { "securityLevel": "antiscript", "startOnLoad": false }, window.relearn.mermaidConfig, { theme: attrs.theme } ) );
|
mermaid.initialize( Object.assign( { "securityLevel": "antiscript", "startOnLoad": false }, window.relearn.mermaidConfig, { theme: attrs.theme } ) );
|
||||||
mermaid.run();
|
mermaid.run({
|
||||||
|
postRenderCallback: function(){
|
||||||
// zoom for Mermaid
|
// zoom for Mermaid
|
||||||
// https://github.com/mermaid-js/mermaid/issues/1860#issuecomment-1345440607
|
// https://github.com/mermaid-js/mermaid/issues/1860#issuecomment-1345440607
|
||||||
var svgs = d3.selectAll( '.mermaid.zoom svg' );
|
var svgs = d3.selectAll( '.mermaid.zoom svg' );
|
||||||
|
@ -290,6 +291,10 @@ function initMermaid( update, attrs ) {
|
||||||
});
|
});
|
||||||
svg.call( zoom );
|
svg.call( zoom );
|
||||||
});
|
});
|
||||||
|
},
|
||||||
|
querySelector: '.mermaid',
|
||||||
|
suppressErrors: true
|
||||||
|
});
|
||||||
}
|
}
|
||||||
if( update && search && search.length ){
|
if( update && search && search.length ){
|
||||||
sessionStorage.setItem( baseUriFull+'search-value', search );
|
sessionStorage.setItem( baseUriFull+'search-value', search );
|
||||||
|
|
Loading…
Reference in a new issue