Comments test going well

This commit is contained in:
NikaZhenya 2018-10-04 17:30:48 -05:00
parent 4f5f68c4db
commit 30833fd0b3
1 changed files with 1 additions and 7 deletions

View File

@ -9,15 +9,9 @@ window.onload = function () {
function add_shares (url) {
var section = document.getElementsByTagName('section')[0],
div = document.createElement('div'),
script = document.createElement('script');
div.id = 'social';
div.style.cssText = 'margin-top:1em;padding-top:1em;border-top:1px dashed gray;'
div.innerHTML += '<h3 style="margin:0;color:gray;font-style:normal;">Comments</h3>';
section.appendChild(div);
script.type = 'text/javascript';
script.src = '/hashover/comments.php';
div.appendChild(script);
section.appendChild(script);
}