Skip to content

Commit 83d2877

Browse files
committed
Changed to symantic versioning (from r8 to v1.8.0)
1 parent 09215ef commit 83d2877

File tree

3 files changed

+12
-22
lines changed

3 files changed

+12
-22
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jquery-hoverintent",
3-
"version": "8",
3+
"version": "1.8.0",
44
"homepage": "http://cherne.net/brian/resources/jquery.hoverIntent.html",
55
"repository": {
66
"type": "git",

jquery.hoverIntent.html

Lines changed: 10 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<!DOCTYPE html>
22
<html lang="en">
33
<head>
4-
<meta charset="utf-8" />
5-
<meta http-equiv="imagetoolbar" content="no" />
64
<title>hoverIntent jQuery Plug-in</title>
7-
<link rel="stylesheet" type="text/css" href="/cherne.css" />
8-
<link rel="stylesheet" type="text/css" href="/cherne_print.css" media="print" />
5+
<!-- CHERNE.NET CSS -->
6+
<link rel="stylesheet" type="text/css" href="http://cherne.net/cherne.css" />
7+
<link rel="stylesheet" type="text/css" href="http://cherne.net/cherne_print.css" media="print" />
98

9+
<!-- jQuery and hoverIntent -->
1010
<script type="text/javascript" src="http://code.jquery.com/jquery.js"></script>
1111
<script type="text/javascript" src="./jquery.hoverIntent.js"></script>
1212

@@ -44,14 +44,13 @@
4444

4545
</head>
4646

47-
<body id="RESOURCES">
47+
<body>
4848

4949
<div id="pageHeader">
5050
<ul id="nav1">
51-
<li><a href="/">cherne.net</a></li>
52-
<li><a href="/brian/resume/">Resume</a></li>
53-
<li><a href="/brian/portfolio/">Portfolio</a></li>
54-
<li><a href="/brian/resources/" class="current">Resources</a></li>
51+
<li><a href="http://cherne.net/">cherne.net</a></li>
52+
<li><a href="http://cherne.net/brian/resume/">Resume</a></li>
53+
<li><a href="http://cherne.net/brian/resources/" class="current">Resources</a></li>
5554
</ul>
5655
<h1>hoverIntent jQuery Plug-in</h1>
5756
</div>
@@ -63,9 +62,6 @@ <h1>hoverIntent jQuery Plug-in</h1>
6362
<h2>What is hoverIntent?</h2>
6463
<p>hoverIntent is a plug-in that attempts to determine the user's intent... like a crystal ball, only with mouse movement! It is similar to <a href="http://api.jquery.com/hover/">jQuery's hover method</a>. However, instead of calling the handlerIn function immediately, hoverIntent waits until the user's mouse slows down enough before making the call.</p>
6564
<p>Why? To delay or prevent the accidental firing of animations or ajax calls. Simple timeouts work for small areas, but if your target area is large it may execute regardless of intent. That's where hoverIntent comes in...</p>
66-
<p class="download"><a href="jquery.hoverIntent.js">Download hoverIntent r7 (fully-commented, uncompressed)</a></p>
67-
<p class="download"><a href="jquery.hoverIntent.minified.js">Download hoverIntent r7 (minified)</a></p>
68-
6965

7066
<h2>Examples</h2>
7167

@@ -175,9 +171,9 @@ <h2 id="defects">Known Defects</h2>
175171
<p>If you place an element flush against the edge of the browser chrome, sometimes Internet Explorer does not trigger a "mouseleave" event if your cursor leaves the element/browser in that direction. hoverIntent cannot correct for this.</p>
176172
<p>Please email me <strong>brian(at)cherne(dot)net</strong> if you have questions or would like to notify me of any defects.</p>
177173

178-
179174
<h2>Release History</h2>
180175
<ul>
176+
<li>v1.8.0 = (2014) Changed to <a href="http://semver.org">Semantic Versioning</a> (from r8 to v1.8.0). Removed <a href="https://en.wikipedia.org/wiki/Zero-width_no-break_space">U+FEFF character</a> from beginning of JS file. Removed stray "jQuery" in favor of "$" for noConflict situations. Changed measurements to use euclidean (instead of rectilinear) distance. Thanks to github community for patches, suggestions, and fixes!</li>
181177
<li>r7 = (2013) Added event delegation via "selector" param/property. Added namespaced events for better isolation. Added handlerInOut support.</li>
182178
<li>r6 = (2011) Identical to r5 except that the Google Chrome defect is fixed once you upgrade to jQuery 1.5.1 (or later).</li>
183179
<li>r5 = (2007) Added state to prevent unmatched function calls. This and previous releases suffer from <a href="http://code.google.com/p/chromium/issues/detail?id=68861">a defect in Google Chrome that improperly triggers mouseout when entering a child input[type=text] element</a>.</li>
@@ -190,11 +186,5 @@ <h2>Release History</h2>
190186
</div><!-- close #main -->
191187

192188
</div><!-- close #pageContent -->
193-
194-
<script src="http://www.google-analytics.com/ga.js" type="text/javascript"></script>
195-
<script type="text/javascript">
196-
var pageTracker = _gat._getTracker("UA-3082227-1");
197-
pageTracker._trackPageview();
198-
</script>
199189
</body>
200-
</html>
190+
</html>

jquery.hoverIntent.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* hoverIntent r8 // 2014.06.29 // jQuery 1.9.1+
2+
* hoverIntent v1.8.0 // 2014.06.29 // jQuery v1.9.1+
33
* http://cherne.net/brian/resources/jquery.hoverIntent.html
44
*
55
* You may use hoverIntent under the terms of the MIT license. Basically that

0 commit comments

Comments
 (0)