Social Sharing : disable tooltip + Tooltip customization

The ability to disable the tooltip + the ability to customize it in the Social Sharing element will be great and useful. There is currently no control over the tooltip.

1 Like

You can use javascript for example:

document.querySelectorAll('li[data-balloon]').forEach(function(li) {
    li.setAttribute('data-balloon-pos', 'bottom');
});