Skip to content

Commit cf14ca9

Browse files
committedNov 21, 2015
Fix #2177 -- don’t mix isso embed and count
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
1 parent d49f024 commit cf14ca9

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed
 

‎nikola/data/themes/base-jinja/templates/comments_helper_isso.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515

1616
{% macro comment_link_script() %}
17-
{% if comment_system_id %}
17+
{% if comment_system_id and 'index' in pagekind %}
1818
<script src="{{ comment_system_id }}js/count.min.js" data-isso="{{ comment_system_id }}"></script>
1919
{% endif %}
2020
{% endmacro %}

‎nikola/data/themes/base/templates/comments_helper_isso.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515

1616
<%def name="comment_link_script()">
17-
%if comment_system_id:
17+
%if comment_system_id and 'index' in pagekind:
1818
<script src="${comment_system_id}js/count.min.js" data-isso="${comment_system_id}"></script>
1919
%endif
2020
</%def>

‎nikola/data/themes/bootstrap3-jinja/templates/gallery.tmpl

+1
Original file line numberDiff line numberDiff line change
@@ -90,5 +90,6 @@ $("#gallery_container").flowr({
9090
}
9191
});
9292
$("a.image-reference").colorbox({rel:"gal", maxWidth:"100%",maxHeight:"100%",scalePhotos:true});
93+
$('a.image-reference[href="'+window.location.hash.substring(1,1000)+'"]').click();
9394
</script>
9495
{% endblock %}

0 commit comments

Comments
 (0)
Please sign in to comment.