1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-30 19:30:25 +02:00

Tooltip refinements

This commit is contained in:
Cameron
2012-11-28 14:00:34 -08:00
parent 250ac74fbd
commit c3094ddd83
2 changed files with 13 additions and 6 deletions

View File

@@ -13,7 +13,13 @@ $(document).ready(function()
return;
}
$(this).tooltip({opacity:1.0,fade:true});
var pos = $(this).attr('data-placement');
if(!pos)
{
pos = 'top';
}
$(this).tooltip({opacity:1.0,fade:true, placement: pos});
// $(this).css( 'cursor', 'pointer' )
});