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