Lines Matching defs:Element
38 Element.makePositioned(element); // fix IE
48 if (Element.isParent(drops[i].element, deepest.element))
70 (Element.classNames(element).detect(
77 Element.removeClassName(drop.element, drop.hoverclass);
83 Element.addClassName(drop.element, drop.hoverclass);
257 element._opacity = Element.getOpacity(element);
275 this._isScrollChild = Element.childOf(this.element, options.scroll);
278 Element.makePositioned(this.element); // fix IE
296 parseInt(Element.getStyle(this.element,'left') || '0'),
297 parseInt(Element.getStyle(this.element,'top') || '0')]);
328 this.originalZ = parseInt(Element.getStyle(this.element,'z-index') || 0);
409 Element.remove(this._clone);
703 Element.cleanWhitespace(element);
742 return Element.findChildren(
747 return Element.findChildren(
752 if(Element.isParent(dropon, element)) return;
784 if(!Element.isParent(dropon, element)) {
791 var offset = Element.offsetSize(dropon, droponOptions.overlap) * (1.0 - overlap);
794 if (offset - Element.offsetSize (children[index], droponOptions.overlap) >= 0) {
795 offset -= Element.offsetSize (children[index], droponOptions.overlap);
796 } else if (offset - (Element.offsetSize (children[index], droponOptions.overlap) / 2) >= 0) {
824 ($('dropmarker') || Element.extend(document.createElement('DIV'))).
947 Element.isParent = function(child, element) {
950 return Element.isParent(child.parentNode, element);
953 Element.findChildren = function(element, only, recursive, tagName) {
960 (!only || (Element.classNames(e).detect(function(v) { return only.include(v) }))))
963 var grandchildren = Element.findChildren(e, only, recursive, tagName);
971 Element.offsetSize = function (element, type) {