1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-05 19:42:38 +02:00
DanieL 2022-08-31 10:21:07 -03:00
parent 12225f5c27
commit 7da00039c2
3 changed files with 70 additions and 192 deletions

View file

@ -2105,7 +2105,11 @@ async function setToolTips() {
$(selector).not('.alreadyTooltip').on('click', function () {
var t = this;
setTimeout(function () {
$(t).tooltip('hide');
try {
$(t).tooltip('hide');
} catch (e) {
}
}, 2000);
});
$(selector).addClass('alreadyTooltip');