114 lines
3.5 KiB
JavaScript
114 lines
3.5 KiB
JavaScript
|
/*------------------------------- DEPRECATED -------------------------------*/
|
||
|
|
||
|
var Toggle = { display: Element.toggle };
|
||
|
|
||
|
Element.Methods.childOf = Element.Methods.descendantOf;
|
||
|
|
||
|
var Insertion = {
|
||
|
Before: function(element, content) {
|
||
|
return Element.insert(element, content, 'before');
|
||
|
},
|
||
|
|
||
|
Top: function(element, content) {
|
||
|
return Element.insert(element, content, 'top');
|
||
|
},
|
||
|
|
||
|
Bottom: function(element, content) {
|
||
|
return Element.insert(element, content, 'bottom');
|
||
|
},
|
||
|
|
||
|
After: function(element, content) {
|
||
|
return Element.insert(element, content, 'after');
|
||
|
}
|
||
|
}
|
||
|
|
||
|
var $continue = new Error('"throw $continue" is deprecated, use "return" instead');
|
||
|
|
||
|
// This should be moved to script.aculo.us; notice the deprecated methods
|
||
|
// further below, that map to the newer Element methods.
|
||
|
var Position = {
|
||
|
// set to true if needed, warning: firefox performance problems
|
||
|
// NOT neeeded for page scrolling, only if draggable contained in
|
||
|
// scrollable elements
|
||
|
includeScrollOffsets: false,
|
||
|
|
||
|
// must be called before calling withinIncludingScrolloffset, every time the
|
||
|
// page is scrolled
|
||
|
prepare: function() {
|
||
|
this.deltaX = window.pageXOffset
|
||
|
|| document.documentElement.scrollLeft
|
||
|
|| document.body.scrollLeft
|
||
|
|| 0;
|
||
|
this.deltaY = window.pageYOffset
|
||
|
|| document.documentElement.scrollTop
|
||
|
|| document.body.scrollTop
|
||
|
|| 0;
|
||
|
},
|
||
|
|
||
|
// caches x/y coordinate pair to use with overlap
|
||
|
within: function(element, x, y) {
|
||
|
if (this.includeScrollOffsets)
|
||
|
return this.withinIncludingScrolloffsets(element, x, y);
|
||
|
this.xcomp = x;
|
||
|
this.ycomp = y;
|
||
|
this.offset = Element.cumulativeOffset(element);
|
||
|
|
||
|
return (y >= this.offset[1] &&
|
||
|
y < this.offset[1] + element.offsetHeight &&
|
||
|
x >= this.offset[0] &&
|
||
|
x < this.offset[0] + element.offsetWidth);
|
||
|
},
|
||
|
|
||
|
withinIncludingScrolloffsets: function(element, x, y) {
|
||
|
var offsetcache = Element.cumulativeScrollOffset(element);
|
||
|
|
||
|
this.xcomp = x + offsetcache[0] - this.deltaX;
|
||
|
this.ycomp = y + offsetcache[1] - this.deltaY;
|
||
|
this.offset = Element.cumulativeOffset(element);
|
||
|
|
||
|
return (this.ycomp >= this.offset[1] &&
|
||
|
this.ycomp < this.offset[1] + element.offsetHeight &&
|
||
|
this.xcomp >= this.offset[0] &&
|
||
|
this.xcomp < this.offset[0] + element.offsetWidth);
|
||
|
},
|
||
|
|
||
|
// within must be called directly before
|
||
|
overlap: function(mode, element) {
|
||
|
if (!mode) return 0;
|
||
|
if (mode == 'vertical')
|
||
|
return ((this.offset[1] + element.offsetHeight) - this.ycomp) /
|
||
|
element.offsetHeight;
|
||
|
if (mode == 'horizontal')
|
||
|
return ((this.offset[0] + element.offsetWidth) - this.xcomp) /
|
||
|
element.offsetWidth;
|
||
|
},
|
||
|
|
||
|
// Deprecation layer -- use newer Element methods now (1.5.2).
|
||
|
|
||
|
cumulativeOffset: Element.Methods.cumulativeOffset,
|
||
|
|
||
|
positionedOffset: Element.Methods.positionedOffset,
|
||
|
|
||
|
absolutize: function(element) {
|
||
|
Position.prepare();
|
||
|
return Element.absolutize(element);
|
||
|
},
|
||
|
|
||
|
relativize: function(element) {
|
||
|
Position.prepare();
|
||
|
return Element.relativize(element);
|
||
|
},
|
||
|
|
||
|
realOffset: Element.Methods.cumulativeScrollOffset,
|
||
|
|
||
|
offsetParent: Element.Methods.getOffsetParent,
|
||
|
|
||
|
page: Element.Methods.viewportOffset,
|
||
|
|
||
|
clone: function(source, target, options) {
|
||
|
options = options || {};
|
||
|
return Element.clonePosition(target, source, options);
|
||
|
}
|
||
|
}
|
||
|
/*--------------------------------------------------------------------------*/
|