This repository has been archived on 2023-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
Omphaloskepsis/plugins/easy-footnotes/assets/qtip/jquery.qtipcall.js

18 lines
466 B
JavaScript

jQuery(document).ready(function($){
$('.easy-footnote a').qtip({
position: {
my: 'top center', // Position my top left...
at: 'bottom center', // at the bottom right of...
//target: $('.container-post') // my target
//viewport: $('.post_copy')
},
style: {
classes: 'qtip-bootstrap'
},
hide: {
fixed: true,
delay: 400,
event: 'unfocus mouseleave'
}
});
});