Fix tippy
This commit is contained in:
@@ -826,13 +826,13 @@ define([
|
|||||||
var out = false;
|
var out = false;
|
||||||
var xId = $(x).attr('aria-describedby');
|
var xId = $(x).attr('aria-describedby');
|
||||||
if (xId) {
|
if (xId) {
|
||||||
if (xId.indexOf('tippy-tooltip-') === 0) {
|
if (xId.indexOf('tippy-') === 0) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$(x).find('[aria-describedby]').each(function (i, el) {
|
$(x).find('[aria-describedby]').each(function (i, el) {
|
||||||
var id = el.getAttribute('aria-describedby');
|
var id = el.getAttribute('aria-describedby');
|
||||||
if (id.indexOf('tippy-tooltip-') !== 0) { return; }
|
if (id.indexOf('tippy-') !== 0) { return; }
|
||||||
out = true;
|
out = true;
|
||||||
});
|
});
|
||||||
return out;
|
return out;
|
||||||
|
|||||||
Reference in New Issue
Block a user