Skip to content

Latest commit

 

History

History
28 lines (17 loc) · 384 Bytes

upgrading.md

File metadata and controls

28 lines (17 loc) · 384 Bytes

Upgrading

Some of the interfaces has been upgraded.

From version 0.4.0 to 0.5.0

Initialization

mermaid_config is no longer used. Instead a call to mermaid initialize is done as in the example below:

version 0.4.0

mermaid_config = {
    startOnLoad: true
}

version 0.5.0

mermaid.initialize({
    startOnLoad: true
})