birzha/modules/system/assets/ui/js/tooltip.js

26 lines
471 B
JavaScript
Raw Normal View History

2015-05-28 10:34:32 +00:00
/*
=require ../vendor/bootstrap/js/transition.js
2015-05-29 11:16:18 +00:00
=require ../vendor/bootstrap/js/tooltip.js
2015-05-28 10:34:32 +00:00
*/
/*
* Implement the tooltip control automatically
*
* Usage:
*
* <a
* href="javascript:;"
* data-toggle="tooltip"
* data-placement="left"
* title="Tooltip content">
* Some link
* </a>
*/
(function($){
$(document).render(function(){
$('[data-control="tooltip"], [data-toggle="tooltip"]').tooltip()
})
})(jQuery);