Popover not working #1438
-
Hi, Update: I have added a tooltip (which is also not working) and a dropdown to the page (which is working fine) |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Hi, we saw this problem and going to fix it, thanks! |
Beta Was this translation helpful? Give feedback.
-
Hey, the tooltip worked for me after adding var tooltipTriggerList = [].slice.call(
document.querySelectorAll('[data-te-toggle="tooltip"]')
);
var tooltipList = tooltipTriggerList.map(function (tooltipTriggerEl) {
return new te.Tooltip(tooltipTriggerEl);
}); Maybe it helps you too in the meantime? |
Beta Was this translation helpful? Give feedback.
Hey, the tooltip worked for me after adding
Maybe it helps you too in the meantime?