Add additional off method that can accept a handler with extra arguments

While this is not part of jQuery API for off() it is possible to attach such a handler using on(). See http://api.jquery.com/on/ and http://api.jquery.com/off/.
This commit is contained in:
mykohsu
2016-01-14 15:30:05 -08:00
parent d1f6bde13f
commit fab0b336b0
+7
View File
@@ -2271,6 +2271,13 @@ interface JQuery {
* @param handler A handler function previously attached for the event(s), or the special value false.
*/
off(events: string, selector?: string, handler?: (eventObject: JQueryEventObject) => any): JQuery;
/**
* Remove an event handler.
*
* @param events One or more space-separated event types and optional namespaces, or just namespaces, such as "click", "keydown.myPlugin", or ".myPlugin".
* @param handler A handler function previously attached for the event(s), or the special value false. Takes handler with extra args that can be attached with on().
*/
off(events: string, handler: (eventObject: JQueryEventObject, ...args: any[]) => any): JQuery;
/**
* Remove an event handler.
*