Fixing getting/setting classes and makeArray(RegExp) for Blackberry 4.7. Fixes #6930...
[jquery.git] / src / core.js
index e1a3a6d..50ad55d 100644 (file)
@@ -594,7 +594,8 @@ jQuery.extend({
                        // The window, strings (and functions) also have 'length'
                        // The extra typeof function check is to prevent crashes
                        // in Safari 2 (See: #3039)
-                       if ( array.length == null || typeof array === "string" || jQuery.isFunction(array) || (typeof array !== "function" && array.setInterval) ) {
+                       // Tweaked logic slightly to handle Blackberry 4.7 RegExp issues #6930
+                       if ( array.length == null || typeof array === "string" || jQuery.isFunction(array) || typeof array === "function" || typeof array.setInterval !== "undefined" ) {
                                push.call( ret, array );
                        } else {
                                jQuery.merge( ret, array );