Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
todomvc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Eugene Shen
todomvc
Commits
c800c4a1
Commit
c800c4a1
authored
Apr 20, 2012
by
Sindre Sorhus
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix popover bug and improve it with hoverIntent
parent
2764533f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
7 deletions
+26
-7
index.html
index.html
+1
-0
site/js/jquery.hoverIntent.min.js
site/js/jquery.hoverIntent.min.js
+9
-0
site/js/main.js
site/js/main.js
+16
-7
No files found.
index.html
View file @
c800c4a1
...
@@ -170,6 +170,7 @@
...
@@ -170,6 +170,7 @@
</div>
</div>
<script>
!
function
(
d
,
s
,
id
){
var
js
,
fjs
=
d
.
getElementsByTagName
(
s
)[
0
];
if
(
!
d
.
getElementById
(
id
)){
js
=
d
.
createElement
(
s
);
js
.
id
=
id
;
js
.
src
=
"
//platform.twitter.com/widgets.js
"
;
fjs
.
parentNode
.
insertBefore
(
js
,
fjs
);}}(
document
,
"
script
"
,
"
twitter-wjs
"
);
</script>
<script>
!
function
(
d
,
s
,
id
){
var
js
,
fjs
=
d
.
getElementsByTagName
(
s
)[
0
];
if
(
!
d
.
getElementById
(
id
)){
js
=
d
.
createElement
(
s
);
js
.
id
=
id
;
js
.
src
=
"
//platform.twitter.com/widgets.js
"
;
fjs
.
parentNode
.
insertBefore
(
js
,
fjs
);}}(
document
,
"
script
"
,
"
twitter-wjs
"
);
</script>
<script
src=
"https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"
></script>
<script
src=
"https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"
></script>
<script
src=
"site/js/jquery.hoverIntent.min.js"
></script>
<script
src=
"site/js/bootstrap.min.js"
></script>
<script
src=
"site/js/bootstrap.min.js"
></script>
<script
src=
"site/js/main.js"
></script>
<script
src=
"site/js/main.js"
></script>
</body>
</body>
...
...
site/js/jquery.hoverIntent.min.js
0 → 100644
View file @
c800c4a1
/**
* hoverIntent r6 // 2011.02.26 // jQuery 1.5.1+
* <http://cherne.net/brian/resources/jquery.hoverIntent.html>
*
* @param f onMouseOver function || An object with configuration options
* @param g onMouseOut function || Nothing (use configuration options object)
* @author Brian Cherne brian(at)cherne(dot)net
*/
(
function
(
$
){
$
.
fn
.
hoverIntent
=
function
(
f
,
g
){
var
cfg
=
{
sensitivity
:
7
,
interval
:
100
,
timeout
:
0
};
cfg
=
$
.
extend
(
cfg
,
g
?{
over
:
f
,
out
:
g
}:
f
);
var
cX
,
cY
,
pX
,
pY
;
var
track
=
function
(
ev
){
cX
=
ev
.
pageX
;
cY
=
ev
.
pageY
};
var
compare
=
function
(
ev
,
ob
){
ob
.
hoverIntent_t
=
clearTimeout
(
ob
.
hoverIntent_t
);
if
((
Math
.
abs
(
pX
-
cX
)
+
Math
.
abs
(
pY
-
cY
))
<
cfg
.
sensitivity
){
$
(
ob
).
unbind
(
"
mousemove
"
,
track
);
ob
.
hoverIntent_s
=
1
;
return
cfg
.
over
.
apply
(
ob
,[
ev
])}
else
{
pX
=
cX
;
pY
=
cY
;
ob
.
hoverIntent_t
=
setTimeout
(
function
(){
compare
(
ev
,
ob
)},
cfg
.
interval
)}};
var
delay
=
function
(
ev
,
ob
){
ob
.
hoverIntent_t
=
clearTimeout
(
ob
.
hoverIntent_t
);
ob
.
hoverIntent_s
=
0
;
return
cfg
.
out
.
apply
(
ob
,[
ev
])};
var
handleHover
=
function
(
e
){
var
ev
=
jQuery
.
extend
({},
e
);
var
ob
=
this
;
if
(
ob
.
hoverIntent_t
){
ob
.
hoverIntent_t
=
clearTimeout
(
ob
.
hoverIntent_t
)}
if
(
e
.
type
==
"
mouseenter
"
){
pX
=
ev
.
pageX
;
pY
=
ev
.
pageY
;
$
(
ob
).
bind
(
"
mousemove
"
,
track
);
if
(
ob
.
hoverIntent_s
!=
1
){
ob
.
hoverIntent_t
=
setTimeout
(
function
(){
compare
(
ev
,
ob
)},
cfg
.
interval
)}}
else
{
$
(
ob
).
unbind
(
"
mousemove
"
,
track
);
if
(
ob
.
hoverIntent_s
==
1
){
ob
.
hoverIntent_t
=
setTimeout
(
function
(){
delay
(
ev
,
ob
)},
cfg
.
timeout
)}}};
return
this
.
bind
(
'
mouseenter
'
,
handleHover
).
bind
(
'
mouseleave
'
,
handleHover
)}})(
jQuery
);
\ No newline at end of file
site/js/main.js
View file @
c800c4a1
/*global $ */
(
function
()
{
(
function
()
{
'
use strict
'
;
// Demos popover
// Demos popover
$
(
'
#demos li a
'
).
popover
({
function
hover
()
{
delay
:
200
,
$
(
this
).
popover
(
'
toggle
'
);
placement
:
'
in right
'
,
}
title
:
function
()
{
return
$
(
this
).
text
()
+
'
<a href="
'
+
$
(
this
).
data
(
'
source
'
)
+
'
">Go to site</a>
'
;
$
(
'
#demos li a
'
).
each
(
function
()
{
}
var
$this
=
$
(
this
);
}).
on
(
'
click
'
,
'
.popover
'
,
function
(
e
)
{
$this
.
popover
({
placement
:
'
in right
'
,
title
:
$this
.
text
()
+
'
<a href="
'
+
$this
.
data
(
'
source
'
)
+
'
">Go to site</a>
'
});
})
.
off
()
.
hoverIntent
(
hover
,
hover
)
.
on
(
'
click
'
,
'
.popover
'
,
function
(
e
)
{
// Prevent click on the popover, but allow links inside
// Prevent click on the popover, but allow links inside
if
(
e
.
target
.
nodeName
.
toLowerCase
()
!==
'
a
'
)
{
if
(
e
.
target
.
nodeName
.
toLowerCase
()
!==
'
a
'
)
{
e
.
preventDefault
();
e
.
preventDefault
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment