From 4ac366344957bb4a545b3f82abba6889ec4e1621 Mon Sep 17 00:00:00 2001 From: Natan Vivo Date: Mon, 14 Jan 2013 14:57:43 -0200 Subject: [PATCH] Proxy should accept additional arguments. http://api.jquery.com/jQuery.proxy/ --- jquery/jquery-1.8.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jquery/jquery-1.8.d.ts b/jquery/jquery-1.8.d.ts index 260d18b70..3328c2082 100644 --- a/jquery/jquery-1.8.d.ts +++ b/jquery/jquery-1.8.d.ts @@ -246,7 +246,7 @@ interface JQueryStatic { /****** EVENTS *******/ - proxy(context: any, name: any): any; + proxy(context: any, name: any, ...args: any[]): any; Deferred(): JQueryDeferred; Event(name:string, eventProperties?:any): JQueryEventObject;