]> source.dussan.org Git - gwtquery.git/commitdiff
use an unused event mask for ONSUBMIT
authorJulien Dramaix <julien.dramaix@gmail.com>
Sun, 10 Apr 2011 20:25:50 +0000 (20:25 +0000)
committerJulien Dramaix <julien.dramaix@gmail.com>
Sun, 10 Apr 2011 20:25:50 +0000 (20:25 +0000)
gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/events/EventsListener.java

index c55019381890d0e98d54ac94ba54f9ff11d018ac..efd534050d4b6b337e4e5bb7309a2cd5a5d21f04 100644 (file)
@@ -90,7 +90,6 @@ public class EventsListener implements EventListener {
    */
   private static class LiveBindFunction extends BindFunction {
 
-    // TODO can be a list of BindFunction
     Map<String, List<BindFunction>> bindFunctionBySelector;
 
     LiveBindFunction(int type, String namespace) {
@@ -223,7 +222,7 @@ public class EventsListener implements EventListener {
   }
 
   // Gwt Events class has not this event defined, so we have to select ane available power of 2 
-  public static int ONSUBMIT = 0x800000;
+  public static int ONSUBMIT = 0x8000000;
 
   public static void clean(Element e) {
     EventsListener ret = getGQueryEventListener(e);