summaryrefslogtreecommitdiff
path: root/public/js
diff options
context:
space:
mode:
Diffstat (limited to 'public/js')
-rw-r--r--public/js/extra.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/public/js/extra.js b/public/js/extra.js
index 61e010c6..84b7c7d3 100644
--- a/public/js/extra.js
+++ b/public/js/extra.js
@@ -325,11 +325,11 @@ function finishView(view) {
});
//mermaid
- var mermaids = view.find(".mermaid.raw").removeClass("raw");
+ var mermaids = view.find("div.mermaid.raw").removeClass("raw");
mermaids.each(function (key, value) {
try {
var $value = $(value);
- var $ele = $(value).parent().parent();
+ var $ele = $(value).closest('pre');
var mermaidError = null;
mermaid.parseError = function (err, hash) {