Lines Matching refs:Element

41     Element.makePositioned(element); // fix IE
51 if (Element.isParent(drops[i].element, deepest.element))
73 (Element.classNames(element).detect(
80 Element.removeClassName(drop.element, drop.hoverclass);
86 Element.addClassName(drop.element, drop.hoverclass);
258 element._opacity = Element.getOpacity(element);
276 this._isScrollChild = Element.childOf(this.element, options.scroll);
279 Element.makePositioned(this.element); // fix IE
298 parseInt(Element.getStyle(this.element,'left') || '0'),
299 parseInt(Element.getStyle(this.element,'top') || '0')]);
328 this.originalZ = parseInt(Element.getStyle(this.element,'z-index') || 0);
395 Element.remove(this._clone);
673 Element.cleanWhitespace(element);
713 return Element.findChildren(
718 return Element.findChildren(
723 if(Element.isParent(dropon, element)) return;
755 if(!Element.isParent(dropon, element)) {
762 var offset = Element.offsetSize(dropon, droponOptions.overlap) * (1.0 - overlap);
765 if (offset - Element.offsetSize (children[index], droponOptions.overlap) >= 0) {
766 offset -= Element.offsetSize (children[index], droponOptions.overlap);
767 … } else if (offset - (Element.offsetSize (children[index], droponOptions.overlap) / 2) >= 0) {
795 ($('dropmarker') || Element.extend(document.createElement('DIV'))).
918 Element.isParent = function(child, element) {
921 return Element.isParent(child.parentNode, element);
924 Element.findChildren = function(element, only, recursive, tagName) {
931 (!only || (Element.classNames(e).detect(function(v) { return only.include(v) }))))
934 var grandchildren = Element.findChildren(e, only, recursive, tagName);
942 Element.offsetSize = function (element, type) {