misago.js 248 B

1234567
  1. // Register tooltips
  2. $(function() {
  3. $('.tooltip-top').tooltip({placement: 'top'});
  4. $('.tooltip-bottom').tooltip({placement: 'bottom'});
  5. $('.tooltip-left').tooltip({placement: 'left'});
  6. $('.tooltip-right').tooltip({placement: 'right'});
  7. });