Skip to content

Commit

Permalink
Load IntenseDebate and LiveFyre over https
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
  • Loading branch information
Kwpolska committed Mar 14, 2018
1 parent a976064 commit 26b7695
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Expand Up @@ -6,7 +6,7 @@ var idcomments_post_id = "{{ identifier }}";
var idcomments_post_url = "{{ url }}";
</script>
<span id="IDCommentsPostTitle" style="display:none"></span>
<script src='http://www.intensedebate.com/js/genericCommentWrapperV2.js'></script>
<script src="https://www.intensedebate.com/js/genericCommentWrapperV2.js"></script>
</script>
{% endmacro %}

Expand All @@ -17,7 +17,7 @@ var idcomments_acct = '{{ comment_system_id }}';
var idcomments_post_id = "{{ identifier }}";
var idcomments_post_url = "{{ link }}";
</script>
<script src="http://www.intensedebate.com/js/genericLinkWrapperV2.js"></script>
<script src="https://www.intensedebate.com/js/genericLinkWrapperV2.js"></script>
</a>
{% endmacro %}

Expand Down
@@ -1,7 +1,7 @@
{# -*- coding: utf-8 -*- #}
{% macro comment_form(url, title, identifier) %}
<div id="livefyre-comments"></div>
<script src="http://zor.livefyre.com/wjs/v3.0/javascripts/livefyre.js"></script>
<script src="https://zor.livefyre.com/wjs/v3.0/javascripts/livefyre.js"></script>
<script>
(function () {
var articleId = "{{ identifier }}";
Expand Down Expand Up @@ -29,5 +29,5 @@


{% macro comment_link_script() %}
<script src="http://zor.livefyre.com/wjs/v1.0/javascripts/CommentCount.js"></script>
<script src="https://zor.livefyre.com/wjs/v1.0/javascripts/CommentCount.js"></script>
{% endmacro %}
Expand Up @@ -6,7 +6,7 @@ var idcomments_post_id = "${identifier}";
var idcomments_post_url = "${url}";
</script>
<span id="IDCommentsPostTitle" style="display:none"></span>
<script src='http://www.intensedebate.com/js/genericCommentWrapperV2.js'></script>
<script src="https://www.intensedebate.com/js/genericCommentWrapperV2.js"></script>
</script>
</%def>

Expand All @@ -17,7 +17,7 @@ var idcomments_acct = '${comment_system_id}';
var idcomments_post_id = "${identifier}";
var idcomments_post_url = "${link}";
</script>
<script src="http://www.intensedebate.com/js/genericLinkWrapperV2.js"></script>
<script src="https://www.intensedebate.com/js/genericLinkWrapperV2.js"></script>
</a>
</%def>

Expand Down
@@ -1,7 +1,7 @@
## -*- coding: utf-8 -*-
<%def name="comment_form(url, title, identifier)">
<div id="livefyre-comments"></div>
<script src="http://zor.livefyre.com/wjs/v3.0/javascripts/livefyre.js"></script>
<script src="https://zor.livefyre.com/wjs/v3.0/javascripts/livefyre.js"></script>
<script>
(function () {
var articleId = "${identifier}";
Expand Down Expand Up @@ -29,5 +29,5 @@


<%def name="comment_link_script()">
<script src="http://zor.livefyre.com/wjs/v1.0/javascripts/CommentCount.js"></script>
<script src="https://zor.livefyre.com/wjs/v1.0/javascripts/CommentCount.js"></script>
</%def>

0 comments on commit 26b7695

Please sign in to comment.