From 1bbbf8022658b5d003b4ebe844da44e497f51893 Mon Sep 17 00:00:00 2001 From: Balint Kovacs Date: Sat, 11 Nov 2017 04:08:05 +0000 Subject: [PATCH 1/4] Fix some return types --- entries/event.stopImmediatePropagation.xml | 2 +- entries/event.stopPropagation.xml | 2 +- entries/jQuery.ajaxSetup.xml | 2 +- entries/jQuery.globalEval.xml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/entries/event.stopImmediatePropagation.xml b/entries/event.stopImmediatePropagation.xml index b067e43a..e5b53eba 100644 --- a/entries/event.stopImmediatePropagation.xml +++ b/entries/event.stopImmediatePropagation.xml @@ -1,5 +1,5 @@ - + event.stopImmediatePropagation() 1.3 diff --git a/entries/event.stopPropagation.xml b/entries/event.stopPropagation.xml index adf4ea10..8d34bd4d 100644 --- a/entries/event.stopPropagation.xml +++ b/entries/event.stopPropagation.xml @@ -1,5 +1,5 @@ - + event.stopPropagation() 1.0 diff --git a/entries/jQuery.ajaxSetup.xml b/entries/jQuery.ajaxSetup.xml index d9589e3a..d175c54a 100644 --- a/entries/jQuery.ajaxSetup.xml +++ b/entries/jQuery.ajaxSetup.xml @@ -1,5 +1,5 @@ - + jQuery.ajaxSetup() 1.1 diff --git a/entries/jQuery.globalEval.xml b/entries/jQuery.globalEval.xml index ce510fe3..ad6b7d1e 100644 --- a/entries/jQuery.globalEval.xml +++ b/entries/jQuery.globalEval.xml @@ -1,5 +1,5 @@ - + jQuery.globalEval() 1.0.4 From 9cd5bc62b63ce162c90e441dff83b3e32f7f91c3 Mon Sep 17 00:00:00 2001 From: Balint Kovacs Date: Sat, 11 Nov 2017 04:30:13 +0000 Subject: [PATCH 2/4] Fix signature of callbacks.fireWih Fixes #1066 --- entries/callbacks.fireWith.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/entries/callbacks.fireWith.xml b/entries/callbacks.fireWith.xml index dfb2adb3..0cd27e15 100644 --- a/entries/callbacks.fireWith.xml +++ b/entries/callbacks.fireWith.xml @@ -3,11 +3,11 @@ callbacks.fireWith() 1.7 - + A reference to the context in which the callbacks in the list should be fired. - - An argument, or array of arguments, to pass to the callbacks in the list. + + An array of arguments to pass to the callbacks in the list. If omitted or undefined, no arguments will be passed. Call all callbacks in a list with the given context and arguments. From d24199e7610199a2bcd4ac112167dbb0b226ca4c Mon Sep 17 00:00:00 2001 From: Balint Kovacs Date: Tue, 14 Nov 2017 18:37:46 +0000 Subject: [PATCH 3/4] Make callbacks.fireWith signature match jquery#3844 --- entries/callbacks.fireWith.xml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/entries/callbacks.fireWith.xml b/entries/callbacks.fireWith.xml index 0cd27e15..a7189326 100644 --- a/entries/callbacks.fireWith.xml +++ b/entries/callbacks.fireWith.xml @@ -3,11 +3,13 @@ callbacks.fireWith() 1.7 - + A reference to the context in which the callbacks in the list should be fired. - - An array of arguments to pass to the callbacks in the list. If omitted or undefined, no arguments will be passed. + + An argument, or array of arguments, to pass to the callbacks in the list. + + Call all callbacks in a list with the given context and arguments. From dcf5475ece5c0b279682ed49b900edd3b2c4fb20 Mon Sep 17 00:00:00 2001 From: Balint Kovacs Date: Mon, 20 Nov 2017 21:25:17 +0000 Subject: [PATCH 4/4] Fix callbacks.fireWith again, see #1066 This reverts commit d24199e7610199a2bcd4ac112167dbb0b226ca4c. --- entries/callbacks.fireWith.xml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/entries/callbacks.fireWith.xml b/entries/callbacks.fireWith.xml index a7189326..7527e182 100644 --- a/entries/callbacks.fireWith.xml +++ b/entries/callbacks.fireWith.xml @@ -3,13 +3,11 @@ callbacks.fireWith() 1.7 - + A reference to the context in which the callbacks in the list should be fired. - - An argument, or array of arguments, to pass to the callbacks in the list. - - + + An array or array-like object of arguments to pass to the callbacks in the list. If omitted or undefined, no arguments will be passed. Call all callbacks in a list with the given context and arguments.