mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
Fixed Disqus integration with instant loading
This commit is contained in:
@@ -8,5 +8,5 @@
|
|||||||
{% if not page.is_homepage and disqus %}
|
{% if not page.is_homepage and disqus %}
|
||||||
<h2 id="__comments">{{ lang.t("meta.comments") }}</h2>
|
<h2 id="__comments">{{ lang.t("meta.comments") }}</h2>
|
||||||
<div id="disqus_thread"></div>
|
<div id="disqus_thread"></div>
|
||||||
<script>var disqus_config=function(){this.page.url="{{ page.canonical_url }}",this.page.identifier="{{ page.canonical_url | replace(config.site_url, '') }}"};window.addEventListener("load",function(){var e=document,i=e.createElement("script");i.src="//{{ disqus }}.disqus.com/embed.js",i.setAttribute("data-timestamp",+new Date),(e.head||e.body).appendChild(i)})</script>
|
<script>var script,disqus_config=function(){this.page.url="{{ page.canonical_url }}",this.page.identifier="{{ page.canonical_url | replace(config.site_url, '') }}"};"undefined"==typeof DISQUS?((script=document.createElement("script")).async=!0,script.src="https://{{ disqus }}.disqus.com/embed.js",script.setAttribute("data-timestamp",Date.now()),document.body.appendChild(script)):DISQUS.reset({reload:!0,config:function(){this.page.identifier="{{ page.title }}",this.page.url="{{ page.canonical_url }}"}})</script>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|||||||
@@ -31,16 +31,31 @@
|
|||||||
<h2 id="__comments">{{ lang.t("meta.comments") }}</h2>
|
<h2 id="__comments">{{ lang.t("meta.comments") }}</h2>
|
||||||
<div id="disqus_thread"></div>
|
<div id="disqus_thread"></div>
|
||||||
<script>
|
<script>
|
||||||
var disqus_config = function () {
|
var disqus_config = function() {
|
||||||
this.page.url = "{{ page.canonical_url }}";
|
this.page.url = "{{ page.canonical_url }}"
|
||||||
this.page.identifier =
|
this.page.identifier =
|
||||||
"{{ page.canonical_url | replace(config.site_url, '') }}";
|
"{{ page.canonical_url | replace(config.site_url, '') }}"
|
||||||
};
|
}
|
||||||
window.addEventListener("load", function() {
|
|
||||||
var d = document, s = d.createElement("script");
|
/* Set up for the first time */
|
||||||
s.src = "//{{ disqus }}.disqus.com/embed.js";
|
if (typeof DISQUS === "undefined") {
|
||||||
s.setAttribute("data-timestamp", +new Date());
|
var script = document.createElement("script")
|
||||||
(d.head || d.body).appendChild(s);
|
script.async = true
|
||||||
})
|
script.src = "https://{{ disqus }}.disqus.com/embed.js"
|
||||||
|
script.setAttribute("data-timestamp", Date.now())
|
||||||
|
|
||||||
|
/* Inject script tag */
|
||||||
|
document.body.appendChild(script)
|
||||||
|
|
||||||
|
/* Set up on navigation (instant loading) */
|
||||||
|
} else {
|
||||||
|
DISQUS.reset({
|
||||||
|
reload: true,
|
||||||
|
config: function () {
|
||||||
|
this.page.identifier = "{{ page.title }}"
|
||||||
|
this.page.url = "{{ page.canonical_url }}"
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|||||||
Reference in New Issue
Block a user