Browse
For agents
About
Easy Footnotes
/
1.0.12
Easy Footnotes
v1.0.12
Switch version
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
Overview
Code
easy-footnotes
/
assets
/
qtip
/
jquery.qtipcall.js
jquery.qtipcall.js
in Easy Footnotes 1.0.12, at assets/qtip/jquery.qtipcall.js
18 lines
406 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
jQuery
(
document
)
.
ready
(
function
(
$
)
{
2
$
(
'
.easy-footnote a
'
)
.
qtip
(
{
3
position
:
{
4
my
:
'
top center
'
,
//
Position my top left...
5
at
:
'
bottom center
'
,
//
at the bottom right of...
6
viewport
:
$
(
window
)
7
}
,
8
style
:
{
9
classes
:
'
qtip-bootstrap
'
10
}
,
11
hide
:
{
12
fixed
:
true
,
13
delay
:
400
,
14
event
:
'
unfocus mouseleave
'
15
}
16
}
)
;
17
}
)
;
18