1234567891011121314151617 |
- {% if DISQUS_SITENAME and SITEURL and article.status != 'draft' %}
- <script language="javascript" type="text/javascript">
- function uncollapse() {
- if (window.location.hash.match(/^#comment-\d+$/)) {
- $('#disqus_thread').collapse('show');
- }
- }
- </script>
- <script type="text/javascript" language="JavaScript">
- uncollapse();
- window.onhashchange=function(){
- if (window.location.hash.match(/^#comment-\d+$/))
- window.location.reload(true);
- }
- </script>
- {% endif %}
|