Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Read <eread@gitlab.com>2022-04-22 03:09:22 +0300
committerEvan Read <eread@gitlab.com>2022-04-22 03:09:22 +0300
commit5e7006db699dbf3e6f8a861f12d0f8fe17953377 (patch)
tree35c414599d13a5b61d65741bbf47f2bd4f24e501
parent7566eac08e90126f56fca77237c9517a2b9cf097 (diff)
Update Mermaid to v9.0.1
-rw-r--r--content/assets/javascripts/mermaid.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/content/assets/javascripts/mermaid.js b/content/assets/javascripts/mermaid.js
index a1d5fc34..82ce57d2 100644
--- a/content/assets/javascripts/mermaid.js
+++ b/content/assets/javascripts/mermaid.js
@@ -1,5 +1,5 @@
---
-version: 4
+version: 5
---
function loadMermaidJsIfNeeded() {
@@ -8,7 +8,7 @@ function loadMermaidJsIfNeeded() {
}
var element = document.createElement("script");
- element.src = "https://cdnjs.cloudflare.com/ajax/libs/mermaid/9.0.0/mermaid.min.js";
+ element.src = "https://cdnjs.cloudflare.com/ajax/libs/mermaid/9.0.1/mermaid.min.js";
element.onload = function(){mermaid.init();};
document.body.appendChild(element);
}