summaryrefslogtreecommitdiffstats
path: root/templates/html/dynsections_tooltips.js
blob: ddc333a46be9630c5c97f8e64263ab1fc874db8c (plain)
1
2
3
4
5
6
$(document).ready(function() {
  $('.code,.codeRef').each(function() {
    $(this).data('powertip',$('#a'+$(this).attr('href').replace(/.*\//,'').replace(/[^a-z_A-Z0-9]/g,'_')).html());
    $(this).powerTip({ placement: 's', smartPlacement: true, mouseOnToPopup: true });
  });
});