Add option to disable tippy on an element

This commit is contained in:
yflory 2025-03-10 18:33:44 +01:00
parent 94f3e5a9d2
commit 70f8084cd3

View File

@ -1237,6 +1237,7 @@ define([
var addTippy = function (i, el) {
if (el._tippy) { return; }
if (!el.getAttribute('title')) { return; }
if (el.getAttribute('data-notippy')) { return; }
if (el.nodeName === 'IFRAME') { return; }
var opts = {
distance: 15