Skip to content

Commit

Permalink
Tweaked logic for working around Blackberry 4.7 makeArray(RegExp) iss…
Browse files Browse the repository at this point in the history
…ue. Fixes #6930.
  • Loading branch information
jeresig committed Aug 25, 2010
1 parent cb40495 commit 18dad47
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/core.js
Expand Up @@ -595,7 +595,9 @@ jQuery.extend({
// The extra typeof function check is to prevent crashes
// in Safari 2 (See: #3039)
// 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" ) {
var type = toString.call(array);

if ( array.length == null || type === "[object String]" || type === "[object Function]" || type === "[object RegExp]" || (typeof type !== "function" && array.setInterval) ) {
push.call( ret, array );
} else {
jQuery.merge( ret, array );
Expand Down

0 comments on commit 18dad47

Please sign in to comment.