Przeglądaj źródła

fix: just include Disqus comment count JS once if enabled

Fix dc2c70e
See #1229
George Cushen 6 lat temu
rodzic
commit
b57c5f87b8
1 zmienionych plików z 1 dodań i 2 usunięć
  1. 1 2
      layouts/partials/site_js.html

+ 1 - 2
layouts/partials/site_js.html

@@ -125,8 +125,7 @@
     {{ end }}
 
     {{/* Disqus Comment Count JS. */}}
-    {{ $disqus_enabled := eq site.Params.comments.engine 1 | and (index site.Params.comments.commentable .Type) | and (ne .Params.commentable false) | or .Params.commentable }}
-    {{ if and $disqus_enabled (site.Params.comments.disqus.show_count | default true) }}
+    {{ if and (eq site.Params.comments.engine 1) (site.Params.comments.disqus.show_count | default true) }}
     <script id="dsq-count-scr" src="https://{{site.Params.comments.disqus.shortname}}.disqus.com/count.js" async></script>
     {{ end }}