Преглед изворни кода

fix: console error when highlight disabled (#1455)

If "hightlight" was disabled, the following error appeared in the
console:

    Uncaught ReferenceError: code_highlighting is not defined
Ronny Chevalier пре 5 година
родитељ
комит
c7b71e6c4b
1 измењених фајлова са 2 додато и 0 уклоњено
  1. 2 0
      layouts/partials/site_js.html

+ 2 - 0
layouts/partials/site_js.html

@@ -47,6 +47,8 @@
     {{/* Initialise code highlighting. */}}
     {{ if $.Scratch.Get "highlight_enabled" }}
     <script>const code_highlighting = true;</script>
+    {{ else }}
+    <script>const code_highlighting = false;</script>
     {{ end }}
 
     {{ if ne site.Params.search.engine 0 }}