This commit is contained in:
parent
6f031c1015
commit
396dd21273
3 changed files with 33 additions and 18 deletions
|
@ -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 );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue