Lines Matching refs: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);
258 element._opacity = Element.getOpacity(element);
276 this._isScrollChild = Element.childOf(this.element, options.scroll);
279 Element.makePositioned(this.element); // fix IE
297 parseInt(Element.getStyle(this.element,'left') || '0'),
298 parseInt(Element.getStyle(this.element,'top') || '0')]);
329 this.originalZ = parseInt(Element.getStyle(this.element,'z-index') || 0);
410 Element.remove(this._clone);
704 Element.cleanWhitespace(element);
743 return Element.findChildren(
748 return Element.findChildren(
753 if(Element.isParent(dropon, element)) return;
785 if(!Element.isParent(dropon, element)) {
792 var offset = Element.offsetSize(dropon, droponOptions.overlap) * (1.0 - overlap);
795 if (offset - Element.offsetSize (children[index], droponOptions.overlap) >= 0) {
796 offset -= Element.offsetSize (children[index], droponOptions.overlap);
797 … } else if (offset - (Element.offsetSize (children[index], droponOptions.overlap) / 2) >= 0) {
825 ($('dropmarker') || Element.extend(document.createElement('DIV'))).
948 Element.isParent = function(child, element) {
951 return Element.isParent(child.parentNode, element);
954 Element.findChildren = function(element, only, recursive, tagName) {
961 (!only || (Element.classNames(e).detect(function(v) { return only.include(v) }))))
964 var grandchildren = Element.findChildren(e, only, recursive, tagName);
972 Element.offsetSize = function (element, type) {