]> source.dussan.org Git - gwtquery.git/commitdiff
null
authorManolo Carrasco <manolo@apache.org>
Mon, 4 Apr 2011 16:18:12 +0000 (16:18 +0000)
committerManolo Carrasco <manolo@apache.org>
Mon, 4 Apr 2011 16:18:12 +0000 (16:18 +0000)
gwtquery-core/src/main/java/com/google/gwt/query/client/GQuery.java

index 965a752795180e595834fbac57f5eaecaae8882a..25e7ab950b84cece0d522c8586582b4b71a998a9 100644 (file)
@@ -2579,10 +2579,10 @@ public class GQuery implements Lazy<GQuery, LazyGQuery> {
    * for both visible and hidden elements.\r
    */\r
   public int scrollTop() {\r
+    Element e = get(0);\r
     if (e == null) {\r
       return 0;\r
     }\r
-    Element e = get(0);\r
     if (e == window || e.getNodeName() == null) {\r
       return Window.getScrollTop();\r
     } else if (e == (Node) document) {\r