We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently located at (near): https://github.com/ericdrowell/KineticJS/blob/master/kinetic.js#L3314
On a project i'm currently working on, the following line of code throws an error, saying undefined is not a function:
defaultValue = getter ? getter.call(this) : null;
This can be resolved by changing that line to:
defaultValue = type._isFunction(getter) ? getter.call(this) : null;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently located at (near): https://github.com/ericdrowell/KineticJS/blob/master/kinetic.js#L3314
On a project i'm currently working on, the following line of code throws an error, saying undefined is not a function:
This can be resolved by changing that line to:
The text was updated successfully, but these errors were encountered: