perrotuerto.blog/old/js/main.js

18 lines
442 B
JavaScript
Raw Normal View History

2018-10-04 15:11:02 -05:00
window.onload = function () {
var url = window.location.pathname,
2018-10-04 16:27:16 -05:00
file = url.split('/')[url.split('/').length - 1].substring(0,5);
2018-10-04 15:11:02 -05:00
2018-10-04 16:27:16 -05:00
if (file == 'entry') {
2018-10-04 15:11:02 -05:00
add_shares(url);
}
};
function add_shares (url) {
var section = document.getElementsByTagName('section')[0],
2018-10-04 17:22:15 -05:00
script = document.createElement('script');
2018-10-04 15:11:02 -05:00
2018-10-04 17:22:15 -05:00
script.type = 'text/javascript';
script.src = '/hashover/comments.php';
2018-10-04 17:30:48 -05:00
section.appendChild(script);
2018-10-04 15:11:02 -05:00
}