]> source.dussan.org Git - gwtquery.git/commitdiff
Change method signature
authorManuel Carrasco Moñino <manuel.carrasco.m@gmail.com>
Thu, 7 Feb 2013 15:56:57 +0000 (16:56 +0100)
committerManuel Carrasco Moñino <manuel.carrasco.m@gmail.com>
Thu, 7 Feb 2013 15:56:57 +0000 (16:56 +0100)
gwtquery-core/src/main/java/com/google/gwt/query/client/js/JsUtils.java

index c54ab58877bc77de4c2d55944a79c20d38faf788..b24fe2eb58482443815424e743f98ddf372b8fba 100644 (file)
@@ -257,7 +257,7 @@ public class JsUtils {
    * implementation returns an empty string instead of null when the attribute is not 
    * present
    */
-  public static native boolean hasAttribute(JavaScriptObject o, String name)/*-{
+  public static native boolean hasAttribute(Element o, String name)/*-{
     return !!(o && o.getAttribute(name));
   }-*/;