ZwiiCMS/core/vendor/tippy/init.js

14 lines
227 B
JavaScript
Raw Normal View History

2018-04-02 08:29:19 +02:00
/**
* Initialisation de Tippy
*/
$(document).ready(function() {
// Tooltip des aides
tippy(".helpButton", {
arrow: true,
placement: "right"
});
// Tooltip des attributs title
tippy("[title]", {
arrow: true
});
});