misago.js 324 B

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