16 lines
292 B
JavaScript
16 lines
292 B
JavaScript
$(document).ready(function(){
|
|
//Tooltip date de maj
|
|
if ($('a.datemaj').length){
|
|
$('a.datemaj').qtip({
|
|
content: $('a.datemaj > span').html(),
|
|
style: {
|
|
width: 170,
|
|
classes: "ui-tooltip-cream"
|
|
},
|
|
position: {
|
|
at: "bottom center",
|
|
my: "top center"
|
|
}
|
|
});
|
|
}
|
|
}); |