2012-12-11 15:51:43 +00:00
|
|
|
//Tooltip date de maj
|
|
|
|
if ($('a.datemaj').length){
|
|
|
|
$('a.datemaj').qtip({
|
|
|
|
content: $('a.datemaj span').html(),
|
|
|
|
style: { width: 200, classes: "ui-tooltip-cream" },
|
|
|
|
position: { my: "top center", at: "bottom center" }
|
|
|
|
});
|
|
|
|
}
|
2012-11-19 13:43:23 +00:00
|
|
|
|
2012-12-11 15:51:43 +00:00
|
|
|
//Tooltip de domiciliation
|
|
|
|
if ($('div.domiciliation').length){
|
|
|
|
$('div.domiciliation').qtip({
|
|
|
|
show: { event: "click" },
|
|
|
|
hide: { event: "unfocus" },
|
|
|
|
content: $('div.domiciliation span').html(),
|
|
|
|
style: { width: 200, classes: "ui-tooltip-cream" },
|
|
|
|
position: { my: "top center", at: "bottom center" }
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
//Tooltip AncienSiege
|
|
|
|
if ($('a.AncienSiege').length){
|
|
|
|
$('a.AncienSiege').qtip({
|
|
|
|
hide: { event: "unfocus" },
|
|
|
|
content: $('a.AncienSiege').attr('title'),
|
|
|
|
style: { width: 350, classes: "ui-tooltip-cream" },
|
|
|
|
position: { my: "top center", at: "bottom center" }
|
|
|
|
});
|
|
|
|
$('a.AncienSiege').attr('title', "Cliquez pour consulter les informations d'activité.");
|
|
|
|
}
|