jQuery : updated "not" elements param to be an array (was incorrectly using a spread operator)

This commit is contained in:
Jan Bevers
2015-10-12 13:58:51 +02:00
parent 27e98c87a8
commit 05b17e447e
2 changed files with 5 additions and 1 deletions
+1 -1
View File
@@ -3050,7 +3050,7 @@ interface JQuery {
*
* @param elements One or more DOM elements to remove from the matched set.
*/
not(...elements: Element[]): JQuery;
not(elements: Element[]): JQuery;
/**
* Remove elements from the set of matched elements.
*