1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-22 01:44:25 +04:00

popover js fixes

This commit is contained in:
codecalm
2020-01-10 22:53:31 +01:00
parent 6aecdacc76
commit 9ff68e407d
2 changed files with 3 additions and 3 deletions

View File

@@ -47,8 +47,8 @@ $(document).ready(function () {
/*
Popover
*/
var popoverTriggerList = [].slice.call(document.querySelectorAll('[data-toggle="popover"]'))
var popoverList = popoverTriggerList.map(function (popoverTriggerEl) {
var popoverTriggerList = [].slice.call(document.querySelectorAll('[data-toggle="popover"]'));
popoverTriggerList.map(function (popoverTriggerEl) {
return new bootstrap.Popover(popoverTriggerEl, {
autoHide: true
})