You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 9, 2021. It is now read-only.
If this is a known issue, please close, but, jQueryObject.Not(Elements[]) is defined in Saltarelle.jQuery as
[ExpandParams] public jQueryObject Not(params Element[] elements)
which is correct if only one argument is passed but incorrect when more than one argument is passed. Because the "not" function only expects and processes one argument (as of jquery 1.10.2 version of the js).
The method should be defined without the ExpandParamsAttribute and the 'params' qualifier.
The text was updated successfully, but these errors were encountered:
ProdigySim
added a commit
to ProdigySim/SaltarelleJQuery
that referenced
this issue
Mar 7, 2014
https://api.jquery.com/not/
From the API docs and testing, .not(elements) only takes a single parameter. [ExpandParams] is incorrect here, so it has been removed.
If this is a known issue, please close, but, jQueryObject.Not(Elements[]) is defined in Saltarelle.jQuery as
which is correct if only one argument is passed but incorrect when more than one argument is passed. Because the "not" function only expects and processes one argument (as of jquery 1.10.2 version of the js).
The method should be defined without the ExpandParamsAttribute and the 'params' qualifier.
The text was updated successfully, but these errors were encountered: