Skip to content

Commit 0fef24c

Browse files
committed
Added OriginalEvent to jQueryEvent object.
1 parent d159aa4 commit 0fef24c

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

src/Libraries/jQuery/jQuery.Core/jQueryEvent.cs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,16 @@ public Element Target {
191191
}
192192
}
193193

194+
/// <summary>
195+
/// Gets the original DOM event which spawned this event.
196+
/// </summary>
197+
[IntrinsicProperty]
198+
public ElementEvent OriginalEvent {
199+
get{
200+
return null;
201+
}
202+
}
203+
194204
/// <summary>
195205
/// Gets the number of milliseconds since Jan 1, 1970, when the event
196206
/// was triggered.

0 commit comments

Comments
 (0)