7 lines
220 B
JavaScript
7 lines
220 B
JavaScript
(function() {
|
|
$('body').on('mouseenter', '[data-toggle="tooltip"]', function( event ) {
|
|
$(this).tooltip('show');
|
|
}).on('mouseleave', '[data-toggle="tooltip"]', function( event ) {
|
|
$(this).tooltip('hide');
|
|
})
|
|
})(); |