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
58f7973b
Commit
58f7973b
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
15e2c198
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
27 additions
and
8 deletions
+27
-8
index.html
index.html
+1
-0
labs
labs
+1
-1
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 @
58f7973b
...
...
@@ -144,6 +144,7 @@ had it been designed for web apps">AngularJS</a>
</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
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/main.js"
></script>
</body>
...
...
labs
@
c800c4a1
Subproject commit
5cc7d398e0d850272e5f30d024aecd4a1b05d4de
Subproject commit
c800c4a1ca208b52a065469334acca9fb4af0cc0
site/js/jquery.hoverIntent.min.js
0 → 100644
View file @
58f7973b
/**
* 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 @
58f7973b
/*global $ */
(
function
()
{
'
use strict
'
;
// Demos popover
$
(
'
#demos li a
'
).
popover
({
delay
:
200
,
placement
:
'
in right
'
,
title
:
function
()
{
return
$
(
this
).
text
()
+
'
<a href="
'
+
$
(
this
).
data
(
'
source
'
)
+
'
">Go to site</a>
'
;
}
}).
on
(
'
click
'
,
'
.popover
'
,
function
(
e
)
{
function
hover
()
{
$
(
this
).
popover
(
'
toggle
'
);
}
$
(
'
#demos li a
'
).
each
(
function
()
{
var
$this
=
$
(
this
);
$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
if
(
e
.
target
.
nodeName
.
toLowerCase
()
!==
'
a
'
)
{
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