소스 검색

fix: just include Disqus comment count JS once if enabled

Fix dc2c70e
See #1229
George Cushen 6 년 전
부모
커밋
b57c5f87b8
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  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 }}