prototype: Make sure the WebKit redefinition of Element#cumulativeOffset uses Element._returnOffset. Closes #9245.
This commit is contained in:
parent
11f25aa995
commit
c603fc5d42
|
@ -1,5 +1,7 @@
|
|||
*SVN*
|
||||
|
||||
* Make sure the WebKit redefinition of Element#cumulativeOffset uses Element._returnOffset. Closes #9245. [mdaines]
|
||||
|
||||
* Make sure Element#observe and Element#stopObserving are always chainable. [sam]
|
||||
|
||||
* Event.fire/Element#fire now returns the newly-fired event instead of the event's target element. [sam]
|
||||
|
|
|
@ -909,7 +909,7 @@ else if (Prototype.Browser.WebKit) {
|
|||
element = element.offsetParent;
|
||||
} while (element);
|
||||
|
||||
return [valueL, valueT];
|
||||
return Element._returnOffset(valueL, valueT);
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue