I don\'t know how to make a disqus comments code to work inside of my custom elements.
| index.html
--------\\
I wanted to give another possible solution to using Disqus comments in Polymer. The main problem is the inability to use Disqus with elements in the shadow dom because they are hidden. So how can we make a shadow dom element visible? We can pass it down the component hierarchy from the index.html of the application.
To expose an element structure your html like this:
index.html
In Polymer App:
Slot is where the #disqus_thread will show. And you can pass it further down to other components, inside polymer-app.
Note: This is code is just an example. Don't try to copy and paste, it won't run.