(function() {
document.addEventListener("DOMContentLoaded", function() {
var url = window.location.href ? encodeURIComponent(window.location.href) : "";
var title = document.title ? encodeURIComponent(document.title) : "";
if (!url) return;
function setShareLink(id, baseUrl) {
var el = document.getElementById(id);
if (el) {
el.href = baseUrl;
}
}
setShareLink('share-facebook', 'https://www.facebook.com/sharer/sharer.php?u=' + url);
setShareLink('share-twitter', 'https://twitter.com/intent/tweet?url=' + url + '&text=' + title);
setShareLink('share-linkedin', 'https://www.linkedin.com/sharing/share-offsite/?url=' + url);
setShareLink('share-whatsapp', 'https://api.whatsapp.com/send?text=' + title + '%20' + url);
setShareLink('share-telegram', 'https://t.me/share/url?url=' + url + '&text=' + title);
setShareLink('share-email', 'mailto:?subject=' + title + '&body=' + title + '%0A%0A' + url);
});
})();