aboutsummaryrefslogtreecommitdiffstats
path: root/src/core.js
diff options
context:
space:
mode:
authorjeresig <jeresig@gmail.com>2010-09-22 16:41:51 -0400
committerjeresig <jeresig@gmail.com>2010-09-22 16:41:51 -0400
commitc8dd49f756562fef68f664869952e4f5aab08acd (patch)
tree171989c57a01f0c84c7d0486645ac434a8d92472 /src/core.js
parentab454d9526445fa025b9c897ec2b21aa89babc8d (diff)
downloadjquery-c8dd49f756562fef68f664869952e4f5aab08acd.tar.gz
jquery-c8dd49f756562fef68f664869952e4f5aab08acd.zip
Unify the means of detecting a window across the library. Fixes jQuery UI bug #5438 and jQuery bugs #6575 and 6088.
Diffstat (limited to 'src/core.js')
-rw-r--r--src/core.js9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/core.js b/src/core.js
index 227dc30d9..9cb519be5 100644
--- a/src/core.js
+++ b/src/core.js
@@ -474,6 +474,11 @@ jQuery.extend({
return jQuery.type(obj) === "array";
},
+ // A crude way of determining if an object is a window
+ isWindow: function( obj ) {
+ return "setInterval" in obj;
+ },
+
type: function( obj ) {
return obj == null ?
String( obj ) :
@@ -484,7 +489,7 @@ jQuery.extend({
// Must be an Object.
// Because of IE, we also have to check the presence of the constructor property.
// Make sure that DOM nodes and window objects don't pass through, as well
- if ( !obj || jQuery.type(obj) !== "object" || obj.nodeType || obj.setInterval ) {
+ if ( !obj || jQuery.type(obj) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) {
return false;
}
@@ -632,7 +637,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" || "setInterval" in array ) {
+ if ( array.length == null || type === "string" || type === "function" || type === "regexp" || jQuery.isWindow( array ) ) {
push.call( ret, array );
} else {
jQuery.merge( ret, array );