Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

fix(forEach): handle jQuery objects of length 0 #13171

Closed
wants to merge 1 commit into from

Conversation

lgalfaso
Copy link
Contributor

Closes: #13169

@@ -193,7 +193,8 @@ msie = document.documentMode;

function isNodeList(obj) {
return typeof obj.length == 'number' &&
typeof obj.item == 'function';
(typeof obj.item == 'function' ||
isString(obj.jquery));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It is actually easier to identify jQuery and jqLite instances using instanceof jqLite.

@lgalfaso lgalfaso closed this in 773efd0 Oct 26, 2015
lgalfaso added a commit that referenced this pull request Oct 26, 2015
@lgalfaso
Copy link
Contributor Author

thanks @petebacondarwin for the cleanup

@petebacondarwin
Copy link
Contributor

Thanks @lgalfaso for the original fix

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants