Browse Source

Fix syntax highlight initialization (#7617) (#7626)

* Fix syntax highlight initialization

Previously hljs was initialized via a function that relies on the
DOMContentLoaded event, registerd after jQuery's 'ready' event. I assume
that with the recent jQuery update, DOMContentLoaded may not be
guaranteed to fire after 'ready'. Fixed this via vanilla JS initalization.

Fixes: https://github.com/go-gitea/gitea/issues/7559

* semicolon
tags/v1.9.0
silverwind 4 years ago
parent
commit
650fdceb5a
1 changed files with 4 additions and 1 deletions
  1. 4
    1
      public/js/index.js

+ 4
- 1
public/js/index.js View File

@@ -1974,7 +1974,10 @@ $(document).ready(function () {

// Highlight JS
if (typeof hljs != 'undefined') {
hljs.initHighlightingOnLoad();
const nodes = [].slice.call(document.querySelectorAll('pre code') || []);
for (let i = 0; i < nodes.length; i++) {
hljs.highlightBlock(nodes[i]);
}
}

// Dropzone

Loading…
Cancel
Save