Skip to content

Commit 7f421b8

Browse files
authored
Merge pull request briancherne#72 from usmonster/release-1-10-0
v1.10.0
2 parents 2771cb5 + 689a230 commit 7f421b8

File tree

5 files changed

+21
-15
lines changed

5 files changed

+21
-15
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
node_modules
2+
package-lock.json

bower.json

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,31 @@
11
{
22
"name": "jquery-hoverintent",
3-
"version": "1.9.0",
3+
"description": "A jQuery plugin that attempts to determine the user's intent on mouseover and thus delay or prevent the accidental firing of callbacks.",
4+
"main": "jquery.hoverIntent.js",
45
"homepage": "http://briancherne.github.io/jquery-hoverIntent/",
6+
"dependencies": {
7+
"jquery": ">=1.7.0"
8+
},
59
"repository": {
610
"type": "git",
711
"url": "https://github.com/briancherne/jquery-hoverIntent"
812
},
913
"authors": [
1014
"Brian Cherne <[email protected]>"
1115
],
12-
"description": "A jQuery plug-in that attempts to determine the user's intent on mouseover. To delay or prevent the accidental firing of callbacks.",
13-
"main": "jquery.hoverIntent.js",
1416
"keywords": [
17+
"browser",
1518
"delay",
19+
"events",
1620
"hover",
1721
"hoverintent",
1822
"intent",
1923
"jquery",
24+
"jquery-plugin",
25+
"mouse",
26+
"mouseenter",
2027
"mouseover",
2128
"plugin"
2229
],
23-
"license": "MIT",
24-
"dependencies": {
25-
"jquery": ">=1.7.0"
26-
}
30+
"license": "MIT"
2731
}

jquery.hoverIntent.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
/*!
2-
* hoverIntent v1.9.0 // 2017.09.01 // jQuery v1.7.0+
2+
* hoverIntent v1.10.0 // 2019.02.25 // jQuery v1.7.0+
33
* http://briancherne.github.io/jquery-hoverIntent/
44
*
55
* You may use hoverIntent under the terms of the MIT license. Basically that
66
* means you are free to use hoverIntent as long as this header is left intact.
7-
* Copyright 2007-2017 Brian Cherne
7+
* Copyright 2007-2019 Brian Cherne
88
*/
99

10-
/* hoverIntent is similar to jQuery's built-in "hover" method except that
10+
/**
11+
* hoverIntent is similar to jQuery's built-in "hover" method except that
1112
* instead of firing the handlerIn function immediately, hoverIntent checks
1213
* to see if the user's mouse has slowed down (beneath the sensitivity
1314
* threshold) before firing the event. The handlerOut function is only

jquery.hoverIntent.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jquery-hoverintent",
3-
"version": "1.9.0",
3+
"version": "1.10.0",
44
"description": "A jQuery plugin that attempts to determine the user's intent on mouseover and thus delay or prevent the accidental firing of callbacks.",
55
"keywords": [
66
"browser",
@@ -36,7 +36,7 @@
3636
"jquery": ">=1.7.0"
3737
},
3838
"devDependencies": {
39-
"uglify-js": "^3.0.28"
39+
"uglify-js": "^3.4.9"
4040
},
4141
"scripts": {
4242
"build": "uglifyjs jquery.hoverIntent.js -c --comments '/^!/' -o jquery.hoverIntent.min.js",

0 commit comments

Comments
 (0)