disqusLoader.js
disqusLoader.js copied to clipboard
Fix empty scrollTop, simplify distance checking
At line 29, document.body.scrollTop
returns 0 on Chrome, Firefox etc. It is recommended to use document.scrollingElement.scrollTop
instead.
Actually here (at line 63) getBoundingClientRect()
is enough to get the distance between the Disqus widget and the top of viewport.