25 lines
441 B
JavaScript
25 lines
441 B
JavaScript
/*
|
|
* Implement the tooltip control automatically
|
|
*
|
|
* Usage:
|
|
*
|
|
* <a
|
|
* href="javascript:;"
|
|
* data-toggle="tooltip"
|
|
* data-placement="left"
|
|
* title="Tooltip content">
|
|
* Some link
|
|
* </a>
|
|
*
|
|
* Require:
|
|
* - bootstrap/transition
|
|
* - bootstrap/tooltip
|
|
*/
|
|
|
|
(function($){
|
|
|
|
$(document).render(function(){
|
|
$('[data-control="tooltip"], [data-toggle="tooltip"]').tooltip()
|
|
})
|
|
|
|
})(jQuery); |