How to solve MooTools and Bootstrap tooltip conflict


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;
		});
	});
}