Skip to content

Commit

Permalink
Merge pull request #72 from usmonster/release-1-10-0
Browse files Browse the repository at this point in the history
v1.10.0
  • Loading branch information
usmonster authored Feb 25, 2019
2 parents 2771cb5 + 689a230 commit 7f421b8
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 15 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
node_modules
package-lock.json
18 changes: 11 additions & 7 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,31 @@
{
"name": "jquery-hoverintent",
"version": "1.9.0",
"description": "A jQuery plugin that attempts to determine the user's intent on mouseover and thus delay or prevent the accidental firing of callbacks.",
"main": "jquery.hoverIntent.js",
"homepage": "http://briancherne.github.io/jquery-hoverIntent/",
"dependencies": {
"jquery": ">=1.7.0"
},
"repository": {
"type": "git",
"url": "https://github.com/briancherne/jquery-hoverIntent"
},
"authors": [
"Brian Cherne <[email protected]>"
],
"description": "A jQuery plug-in that attempts to determine the user's intent on mouseover. To delay or prevent the accidental firing of callbacks.",
"main": "jquery.hoverIntent.js",
"keywords": [
"browser",
"delay",
"events",
"hover",
"hoverintent",
"intent",
"jquery",
"jquery-plugin",
"mouse",
"mouseenter",
"mouseover",
"plugin"
],
"license": "MIT",
"dependencies": {
"jquery": ">=1.7.0"
}
"license": "MIT"
}
7 changes: 4 additions & 3 deletions jquery.hoverIntent.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
/*!
* hoverIntent v1.9.0 // 2017.09.01 // jQuery v1.7.0+
* hoverIntent v1.10.0 // 2019.02.25 // jQuery v1.7.0+
* http://briancherne.github.io/jquery-hoverIntent/
*
* You may use hoverIntent under the terms of the MIT license. Basically that
* means you are free to use hoverIntent as long as this header is left intact.
* Copyright 2007-2017 Brian Cherne
* Copyright 2007-2019 Brian Cherne
*/

/* hoverIntent is similar to jQuery's built-in "hover" method except that
/**
* hoverIntent is similar to jQuery's built-in "hover" method except that
* instead of firing the handlerIn function immediately, hoverIntent checks
* to see if the user's mouse has slowed down (beneath the sensitivity
* threshold) before firing the event. The handlerOut function is only
Expand Down
6 changes: 3 additions & 3 deletions jquery.hoverIntent.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jquery-hoverintent",
"version": "1.9.0",
"version": "1.10.0",
"description": "A jQuery plugin that attempts to determine the user's intent on mouseover and thus delay or prevent the accidental firing of callbacks.",
"keywords": [
"browser",
Expand Down Expand Up @@ -36,7 +36,7 @@
"jquery": ">=1.7.0"
},
"devDependencies": {
"uglify-js": "^3.0.28"
"uglify-js": "^3.4.9"
},
"scripts": {
"build": "uglifyjs jquery.hoverIntent.js -c --comments '/^!/' -o jquery.hoverIntent.min.js",
Expand Down

0 comments on commit 7f421b8

Please sign in to comment.