Getting an error in Bootstrap 4: "Unaccepted error: tooltip jumps"

I am using Bootstrap 4 and on my current website I am using Tooltip . My JS is in the correct format, but sometimes I get an error message in the Console .

This is my Javascript | Bootstrap 4

<script src="vendor/assets/js/jquery.min.js"></script>
<script src="vendor/assets/js/jquery.easing.min.js"></script>
<script src="vendor/assets/js/tether.min.js"></script>
<script src="vendor/assets/js/bootstrap.min.js"></script>

This is a Javascript hint

$(document).ready(function(){
    $('[data-toggle="tooltip"]').tooltip();   
});

This is a console error.

bootstrap.min.js:7 Uncaught Error: Tooltip is transitioning
   at h.hide (bootstrap.min.js:7)
   at h._leave (bootstrap.min.js:7)
   at HTMLAnchorElement.<anonymous> (bootstrap.min.js:7)
   at HTMLAnchorElement.dispatch (jquery.min.js:3)
   at HTMLAnchorElement.r.handle (jquery.min.js:3)
   at Object.trigger (jquery.min.js:3)
   at Object.simulate (jquery.min.js:3)
   at HTMLDocument.c (jquery.min.js:3)
+4
source share
2 answers

As far as I know, installing data-animation="false"on html elements can quickly avoid the error . "

, , , .

https://jsfiddle.net/ytliuSVN/wqjddcm5/

+2

โ€‹โ€‹GitHub:
v4.0.0-alpha.6 - ( "" )

:

, . -1

0

Source: https://habr.com/ru/post/1681933/


All Articles