You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have an issue using this plugin along with Bootstrap version 4.
JavaScript error: TypeError: No method named "destroy".
After closing the popover once, it won't open anymore because of this error.
In Bootstrap 4, "destroy" has been replaced by "dispose".
Changing triggerelement.popover('destroy'); with triggerelement.popover('dispose'); solves the issue.
The text was updated successfully, but these errors were encountered:
Hi there,
I have an issue using this plugin along with Bootstrap version 4.
JavaScript error:
TypeError: No method named "destroy".
After closing the popover once, it won't open anymore because of this error.
In Bootstrap 4, "destroy" has been replaced by "dispose".
Changing
triggerelement.popover('destroy');
withtriggerelement.popover('dispose');
solves the issue.The text was updated successfully, but these errors were encountered: