]> source.dussan.org Git - gwtquery.git/commitdiff
fix issue 211
authorjdramaix <julien.dramaix@gmail.com>
Fri, 29 Nov 2013 12:08:22 +0000 (13:08 +0100)
committerjdramaix <julien.dramaix@gmail.com>
Fri, 29 Nov 2013 12:08:22 +0000 (13:08 +0100)
gwtquery-core/src/main/java/com/google/gwt/query/client/GQuery.java
gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/events/EventsListener.java

index 479f90abf19ca7eebc509ecfadf03ee42c8ecd5e..75d0c18bb51db2f155a33719fbc0524e875d311e 100644 (file)
@@ -2483,9 +2483,11 @@ public class GQuery implements Lazy<GQuery, LazyGQuery> {
    * 'in' to a frequent task. Whenever the mouse cursor is moved over a matched element, the first
    * specified function is fired. Whenever the mouse moves off of the element, the second specified
    * function fires.
+   *
+   * Since GQuery 1.4.0, this method binds handlers for both mouseenter and mouseleave events.
    */
   public GQuery hover(Function fover, Function fout) {
-    return bind(Event.ONMOUSEOVER, null, fover).bind(Event.ONMOUSEOUT, null, fout);
+    return bind("mouseenter", null, fover).bind("mouseleave", null, fout);
   }
 
   /**
index b8e73ae17219556ce6cc81c7fd43564c62b34a1f..dad7099a171ca0d0233967484e3aa45bb3fa7ba7 100644 (file)
@@ -811,5 +811,4 @@ public class EventsListener implements EventListener {
       function.clean();
     }
   }
-
 }