Lines Matching defs:Element

39     Element.makePositioned(element); // fix IE
49 if (Element.isParent(drops[i].element, deepest.element))
71 (Element.classNames(element).detect(
78 Element.removeClassName(drop.element, drop.hoverclass);
84 Element.addClassName(drop.element, drop.hoverclass);
256 element._opacity = Element.getOpacity(element);
274 this._isScrollChild = Element.childOf(this.element, options.scroll);
277 Element.makePositioned(this.element); // fix IE
296 parseInt(Element.getStyle(this.element,'left') || '0'),
297 parseInt(Element.getStyle(this.element,'top') || '0')]);
326 this.originalZ = parseInt(Element.getStyle(this.element,'z-index') || 0);
393 Element.remove(this._clone);
671 Element.cleanWhitespace(element);
711 return Element.findChildren(
716 return Element.findChildren(
721 if(Element.isParent(dropon, element)) return;
753 if(!Element.isParent(dropon, element)) {
760 var offset = Element.offsetSize(dropon, droponOptions.overlap) * (1.0 - overlap);
763 if (offset - Element.offsetSize (children[index], droponOptions.overlap) >= 0) {
764 offset -= Element.offsetSize (children[index], droponOptions.overlap);
765 } else if (offset - (Element.offsetSize (children[index], droponOptions.overlap) / 2) >= 0) {
793 ($('dropmarker') || Element.extend(document.createElement('DIV'))).
916 Element.isParent = function(child, element) {
919 return Element.isParent(child.parentNode, element);
922 Element.findChildren = function(element, only, recursive, tagName) {
929 (!only || (Element.classNames(e).detect(function(v) { return only.include(v) }))))
932 var grandchildren = Element.findChildren(e, only, recursive, tagName);
940 Element.offsetSize = function (element, type) {