Skip to content

Commit

Permalink
Changed license block to minimal version
Browse files Browse the repository at this point in the history
Closes gh-3
  • Loading branch information
nschonni committed Mar 13, 2013
1 parent a3e59aa commit 707e6ef
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions jquery.hoverIntent.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,4 @@
/*!
* 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
* called after a matching handlerIn.
*
* hoverIntent r7 // 2013.03.11 // jQuery 1.9.1+
* http://cherne.net/brian/resources/jquery.hoverIntent.html
*
Expand All @@ -13,7 +7,13 @@
* Copyright 2007, 2013 Brian Cherne
*/

/* // basic usage ... just like .hover()
/* 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
* called after a matching handlerIn.
*
* // basic usage ... just like .hover()
* .hoverIntent( handlerIn, handlerOut )
* .hoverIntent( handlerInOut )
*
Expand All @@ -28,7 +28,7 @@
* @param handlerOut function OR selector for delegation OR undefined
* @param selector selector OR undefined
* @author Brian Cherne <brian(at)cherne(dot)net>
**/
*/
(function($) {
$.fn.hoverIntent = function(handlerIn,handlerOut,selector) {

Expand Down

0 comments on commit 707e6ef

Please sign in to comment.