File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change 11/*!
2- * hoverIntent is similar to jQuery's built-in "hover" method except that
3- * instead of firing the handlerIn function immediately, hoverIntent checks
4- * to see if the user's mouse has slowed down (beneath the sensitivity
5- * threshold) before firing the event. The handlerOut function is only
6- * called after a matching handlerIn.
7- *
82 * hoverIntent r7 // 2013.03.11 // jQuery 1.9.1+
93 * http://cherne.net/brian/resources/jquery.hoverIntent.html
104 *
137 * Copyright 2007, 2013 Brian Cherne
148 */
159
16- /* // basic usage ... just like .hover()
10+ /* hoverIntent is similar to jQuery's built-in "hover" method except that
11+ * instead of firing the handlerIn function immediately, hoverIntent checks
12+ * to see if the user's mouse has slowed down (beneath the sensitivity
13+ * threshold) before firing the event. The handlerOut function is only
14+ * called after a matching handlerIn.
15+ *
16+ * // basic usage ... just like .hover()
1717 * .hoverIntent( handlerIn, handlerOut )
1818 * .hoverIntent( handlerInOut )
1919 *
2828 * @param handlerOut function OR selector for delegation OR undefined
2929 * @param selector selector OR undefined
3030 * @author Brian Cherne <brian(at)cherne(dot)net>
31- ** /
31+ */
3232( function ( $ ) {
3333 $ . fn . hoverIntent = function ( handlerIn , handlerOut , selector ) {
3434
You can’t perform that action at this time.
0 commit comments