Browse Source

Reload window when user clicks on Disqus comment link which is on the same page

Close #6
Talha Mansoor 11 years ago
parent
commit
3f18ffce24
1 changed files with 5 additions and 1 deletions
  1. 5 1
      templates/disqus_comments_uncollapse.html

+ 5 - 1
templates/disqus_comments_uncollapse.html

@@ -7,6 +7,10 @@ function uncollapse() {
 }
 </script>
 <script type="text/javascript" language="JavaScript">
-    uncollapse(); 
+    uncollapse();
+    window.onhashchange=function(){
+        if (window.location.hash.match(/^#comment-\d+$/))
+            window.location.reload(true);
+    }
 </script>
 {% endif %}