27 lines
559 B
JavaScript
27 lines
559 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, name: 'dark' },
|
|
position: { corner: { target: 'bottomMiddle',
|
|
tooltip: 'topMiddle' } }
|
|
});
|
|
});
|
|
|
|
$('.set').hover(function(){
|
|
$(this).find('a.editencours').css('display', 'inline');
|
|
},function () {
|
|
$(this).find('a.editencours').css('display', 'none');
|
|
});
|
|
|
|
}); |