18 lines
376 B
JavaScript
18 lines
376 B
JavaScript
import onmount from 'onmount'
|
|
import injectDisqus from '../helpers/inject_disqus'
|
|
|
|
/**
|
|
* Injects Disqus onto the page.
|
|
*/
|
|
|
|
onmount('[data-js-disqus]', function () {
|
|
const data = JSON.parse(this.getAttribute('data-js-disqus'))
|
|
|
|
window.disqus_config = function () {
|
|
this.page.url = data.url
|
|
this.page.identifier = data.identifier
|
|
}
|
|
|
|
injectDisqus(data.host)
|
|
})
|