From aa4e8ab3fb83f2550bac1e5476bd20f84a5883d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Thu, 10 Nov 2011 07:58:44 -0500 Subject: [PATCH] Widget: Set event.target in ._trigger(). Fixes #7852 - Droppable event target changes under jQuery 1.7. (cherry picked from commit 1b165148a6654f64d572bd4c28ddb2cee5f6a332) --- ui/jquery.ui.widget.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ui/jquery.ui.widget.js b/ui/jquery.ui.widget.js index 4aa42e0b7..7eea40e70 100644 --- a/ui/jquery.ui.widget.js +++ b/ui/jquery.ui.widget.js @@ -257,6 +257,10 @@ $.Widget.prototype = { } } + // the original event may come from any element + // so we need to reset the target on the new event + event.target = this.element[0]; + this.element.trigger( event, data ); return !( $.isFunction(callback) &&