From d12cb4f80a6ae6b9c14e0116cad340aa59e83577 Mon Sep 17 00:00:00 2001 From: rdogmartin Date: Thu, 7 Jan 2016 09:43:34 -0700 Subject: [PATCH] Add item property to MenuUIParams in JQueryUI The ui parameter that is returned to the caller in jQueryUI menu events (e.g. select) has an optional property named item, but it was not included in this type file. --- jqueryui/jqueryui.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/jqueryui/jqueryui.d.ts b/jqueryui/jqueryui.d.ts index 7f117cc07..e93ca9301 100644 --- a/jqueryui/jqueryui.d.ts +++ b/jqueryui/jqueryui.d.ts @@ -507,6 +507,7 @@ declare module JQueryUI { } interface MenuUIParams { + item?: JQuery; } interface MenuEvent {