Skip to content

Instantly share code, notes, and snippets.

@yosriady
Last active October 17, 2020 15:14
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yosriady/4913b6156972a15c04e5 to your computer and use it in GitHub Desktop.
Save yosriady/4913b6156972a15c04e5 to your computer and use it in GitHub Desktop.
Disqus Thread on Rails Turbolinks (AJAX) application
<div id="disqus_thread"></div>
<script type="text/javascript">
if(typeof DISQUS === "undefined"){
var disqus_shortname = 'your_shortname'; // required: replace example with your forum shortname
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
} else {
DISQUS.reset({
reload: true,
config: function () {
this.page.identifier = document.title;
this.page.url = location.href;
}
});
}
</script>
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment