diff -r 322d0feea350 -r 89ef5ed3c48b src/cm/media/js/lib/yui/yui_3.10.3/api/modules/event-hover.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/cm/media/js/lib/yui/yui_3.10.3/api/modules/event-hover.html Tue Jul 16 14:29:46 2013 +0200 @@ -0,0 +1,1598 @@ + + + + + event-hover - YUI 3 + + + + + + + + +
+
+
+ +

+ +
+
+ API Docs for: 3.10.3 +
+
+
+ +
+ +
+
+
+ Show: + + + + + + + +
+ + +
+
+
+

event-hover Module

+
+ + + User Guide & Examples + + + + + + +
+ Defined in: event/js/hover.js:1 +
+ + + +
+ + + +
+

Adds support for a "hover" event. The event provides a convenience wrapper +for subscribing separately to mouseenter and mouseleave. The signature for +subscribing to the event is

+ +
node.on("hover", overFn, outFn);
+node.delegate("hover", overFn, outFn, ".filterSelector");
+Y.on("hover", overFn, outFn, ".targetSelector");
+Y.delegate("hover", overFn, outFn, "#container", ".filterSelector");
+
+ +

Additionally, for compatibility with a more typical subscription +signature, the following are also supported:

+ +
Y.on("hover", overFn, ".targetSelector", outFn);
+Y.delegate("hover", overFn, "#container", outFn, ".filterSelector");
+
+
+ + + +
+
+ +
+ +
+ +
+
+ +
+
+
+
+
+
+ + + + + + + + + +