Suppression title lors de l'afficahge des informations

This commit is contained in:
Michael RICOIS 2011-05-04 13:31:43 +00:00
parent 04779c50d2
commit 048510356d

View File

@ -1,5 +1,4 @@
$(document).ready(function()
{
$(document).ready(function(){
$('#surveillance').tablesorter({
headers: {
3: { sorter: false },
@ -7,21 +6,22 @@ $(document).ready(function()
5: { sorter: false }
}
});
$('.tooltip').each(function()
{
$('.tooltip').each(function(){
var content = $(this).attr('title');
$(this).attr('title', '');
$(this).qtip( {
content: $(this).attr('title'),
content: content,
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');
});
});