forked from ZwiiCMS-Team/ZwiiCMS
14 lines
227 B
JavaScript
14 lines
227 B
JavaScript
|
/**
|
||
|
* Initialisation de Tippy
|
||
|
*/
|
||
|
$(document).ready(function() {
|
||
|
// Tooltip des aides
|
||
|
tippy(".helpButton", {
|
||
|
arrow: true,
|
||
|
placement: "right"
|
||
|
});
|
||
|
// Tooltip des attributs title
|
||
|
tippy("[title]", {
|
||
|
arrow: true
|
||
|
});
|
||
|
});
|