123456789 |
- // Register tooltips
- $(function() {
- $.misago_dom().change(function() {
- $('.tooltip-top').tooltip({placement: 'top', container: 'body'});
- $('.tooltip-bottom').tooltip({placement: 'bottom', container: 'body'});
- $('.tooltip-left').tooltip({placement: 'left', container: 'body'});
- $('.tooltip-right').tooltip({placement: 'right', container: 'body'});
- });
- });
|