30 lines
571 B
JavaScript
30 lines
571 B
JavaScript
$(document).ready(function(){
|
|
$('#surveillance').tablesorter({
|
|
headers: {
|
|
3: { sorter: false },
|
|
4: { sorter: false },
|
|
5: { sorter: false }
|
|
}
|
|
});
|
|
|
|
$('.tooltip').each(function()
|
|
{
|
|
$(this).qtip( {
|
|
content: $(this).attr('tooltip'),
|
|
style: {
|
|
width: 300,
|
|
classes: "ui-tooltip-dark"
|
|
},
|
|
position: {
|
|
at: "bottom center",
|
|
my: "top center"
|
|
}
|
|
});
|
|
});
|
|
|
|
$('.set').hover(function(){
|
|
$(this).find('a.editencours').css('display', 'inline');
|
|
},function () {
|
|
$(this).find('a.editencours').css('display', 'none');
|
|
});
|
|
}); |