Switched to use 'in' for the setInterval/window check as it also skirts around the...
authorJohn Resig <jeresig@gmail.com>
Fri, 27 Aug 2010 22:17:07 +0000 (18:17 -0400)
committerJohn Resig <jeresig@gmail.com>
Fri, 27 Aug 2010 22:17:07 +0000 (18:17 -0400)
src/core.js

index 905a399..f5c2756 100644 (file)
@@ -605,7 +605,7 @@ jQuery.extend({
                        // Tweaked logic slightly to handle Blackberry 4.7 RegExp issues #6930
                        var type = jQuery.type(array);
 
-                       if ( array.length == null || type === "string" || type === "function" || type === "regexp" || (typeof type !== "function" && array.setInterval) ) {
+                       if ( array.length == null || type === "string" || type === "function" || type === "regexp" || "setInterval" in array ) {
                                push.call( ret, array );
                        } else {
                                jQuery.merge( ret, array );