Issue:
Elements with tooltips disappear at mouse hover ended
Details:
Mootools conflict with Bootstrap Jquery
Solution:
You can add the following code to solve this issue:
if(window.MooTools) {
window.addEvent('load', function() {
$(".hasTooltip,label.hasTooltip,[data-toggle],[data-was-toggle],[data-toggle=tooltip]," +
"a[data-toggle],button[data-toggle],[data-toggle=collapse],a[data-toggle=dropdown]")
.each(function(e) {
e.getParent().hide = null;
e.hide = null;
});
});
}
Leave a Reply
You must be logged in to post a comment.