List of usage examples for com.google.gwt.query.client.plugins UiPlugin contains
public static boolean contains(Element parent, Element descendant)
descendant is a child of the parent. From source file:gwtquery.plugins.draggable.client.DraggableHandler.java
License:Apache License
private boolean isOffsetParentIncludedInScrollParent() { assert helperOffsetParent != null && helperScrollParent != null; return !"html".equalsIgnoreCase(helperScrollParent.get(0).getTagName()) && UiPlugin.contains(helperScrollParent.get(0), helperOffsetParent.get(0)); }