Suppression title lors de l'afficahge des informations
This commit is contained in:
parent
04779c50d2
commit
048510356d
@ -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');
|
||||
});
|
||||
|
||||
});
|
Loading…
Reference in New Issue
Block a user