-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Resolve jQuery isFunction warning #530
Conversation
ddcece9
to
4228e2e
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am happy with these changes, but I will leave it to JD or Panos for the final approval
@@ -55,7 +55,7 @@ | |||
|
|||
var keys = ['complete', 'error', 'success'], key; | |||
while(key = keys.pop()) { | |||
if ($.isFunction(options[key])) { | |||
if (typeof options[key] === "function") { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the only change to the provider. The rest is related to Continuous Integration tests.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me
b9643d8
to
e5784b7
Compare
bc6a004
to
58c4a6e
Compare
97759d0
to
a5fadcd
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good work automating this Jared!
Issue raised by Mattybat on the Raygun forums.
See https://api.jquery.com/jQuery.isFunction/
This PR also
package.json
,prerelease.yml
.