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
TypeError: Right-hand side of 'instanceof' is not an object when use jQuery.noConfilct(true)
window.jQuery.noConfilct(true)
const ig = new InfiniteGrid(myHTMLElementContainer); ig.setLayout(InfiniteGrid.GridLayout, { align : 'justify' }); ig.layout();
Problem in this string
egjs-infinitegrid/src/utils.js
Line 59 in 534cf11
The text was updated successfully, but these errors were encountered:
Maybe better use typeof? } else if (typeof window.jQuery !== 'undefined' && param instanceof window.jQuery) || or } else if (window.jQuery && param instanceof window.jQuery) ||
typeof
} else if (typeof window.jQuery !== 'undefined' && param instanceof window.jQuery) ||
} else if (window.jQuery && param instanceof window.jQuery) ||
Sorry, something went wrong.
@belozer Thank you for reporting. 👍
@belozer
Thank you for reporting. It has been fixed. @egjs/infinitegrid 3.4.4 version has been deployed
@egjs/infinitegrid
daybrush
No branches or pull requests
Description
TypeError: Right-hand side of 'instanceof' is not an object when use jQuery.noConfilct(true)
Steps to check or reproduce
window.jQuery.noConfilct(true)
Problem in this string
egjs-infinitegrid/src/utils.js
Line 59 in 534cf11
The text was updated successfully, but these errors were encountered: