core: fixed propagation issue that didn't allow resizables and sortables to work together, because the event didn't bubble out.

This commit is contained in:
Paul Bakaus 2008-06-08 10:20:37 +00:00
parent 67117bc563
commit 8eca969374

View File

@ -212,7 +212,7 @@ $.ui.mouse = {
if (this.mouseDistanceMet(e) && this.mouseDelayMet(e)) {
this._mouseStarted = (this.mouseStart(e) !== false);
if (!this._mouseStarted) { return false; }
if (!this._mouseStarted) { e.preventDefault(); return true; }
}
// these delegates are required to keep context