diff options
author | Manolo Carrasco <manolo@apache.org> | 2011-01-17 10:00:48 +0000 |
---|---|---|
committer | Manolo Carrasco <manolo@apache.org> | 2011-01-17 10:00:48 +0000 |
commit | 84e4622c8f038a48304936c1912082fd841b0d50 (patch) | |
tree | 76eb10cb3d30448c8d5bddd62720658faf800799 /gwtquery-core | |
parent | b658f0f2908bed826ffce29cc9f11d3a15ce7d1c (diff) | |
download | gwtquery-84e4622c8f038a48304936c1912082fd841b0d50.tar.gz gwtquery-84e4622c8f038a48304936c1912082fd841b0d50.zip |
Removed unused static variable.
Diffstat (limited to 'gwtquery-core')
-rw-r--r-- | gwtquery-core/src/main/java/com/google/gwt/query/client/GQuery.java | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/gwtquery-core/src/main/java/com/google/gwt/query/client/GQuery.java b/gwtquery-core/src/main/java/com/google/gwt/query/client/GQuery.java index b9f04f3f..480ac8dd 100644 --- a/gwtquery-core/src/main/java/com/google/gwt/query/client/GQuery.java +++ b/gwtquery-core/src/main/java/com/google/gwt/query/client/GQuery.java @@ -154,13 +154,24 @@ public class GQuery implements Lazy<GQuery, LazyGQuery> { }-*/;
}
+ /**
+ * The body element in the current page.
+ */
public static final BodyElement body = Document.get().getBody();
+ /**
+ * The document element in the current page.
+ */
public static final Document document = Document.get();
- public static boolean fxOff = false;
+ /**
+ * A static reference to the GQuery class.
+ */
public static Class<GQuery> GQUERY = GQuery.class;
+ /**
+ * The window object.
+ */
public static final Element window = window();
private static DataCache dataCache = null;
|