| 1 |
jQuery(document).ready(function($){ |
| 2 |
$('.easy-footnote a').qtip({ |
| 3 |
prerender: true, |
| 4 |
position: { |
| 5 |
my: 'top center', // Position my top left... |
| 6 |
at: 'bottom center', // at the bottom right of... |
| 7 |
viewport: $(window) |
| 8 |
}, |
| 9 |
style: { |
| 10 |
classes: 'qtip-bootstrap' |
| 11 |
}, |
| 12 |
hide: { |
| 13 |
fixed: true, |
| 14 |
delay: 400, |
| 15 |
event: 'unfocus blur mouseleave' |
| 16 |
}, |
| 17 |
show: { |
| 18 |
event: 'focus mouseenter' |
| 19 |
} |
| 20 |
}); |
| 21 |
}); |
| 22 |
|