mirror of
https://github.com/jquery/jquery-ui.git
synced 2026-01-30 03:08:09 -05:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user