PluginProbe
Easy Footnotes / 1.1.2
Easy Footnotes v1.1.2
trunk 1.0.1 1.0.10 1.0.11 1.0.12 1.0.13 1.0.14 1.0.15 1.0.16 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.10 1.1.11 1.1.12 1.1.13 1.1.14 1.1.2 All 32 releases
easy-footnotes / assets / qtip / jquery.qtipcall.js

jquery.qtipcall.js in Easy Footnotes 1.1.2, at assets/qtip/jquery.qtipcall.js

22 lines 468 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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