<!--VORON--><!--VR23--><!--settings{"cls":"share","text":""}settingsend--> <style>
.share {
cursor: pointer;
}
</style> <script>
t_onReady(function () {
t_onFuncLoad('t396_init', function () {
document.querySelector('.share').addEventListener('click', function(e) {
if (navigator.share) {
e.preventDefault();
e.stopImmediatePropagation();
navigator.share({
title: document.title,
url: window.location.href,
description: document.querySelector('meta[name="description"]').getAttribute("content"),
});
}
}, true)
})
})
</script>
123