From 17640273705d1450b806bb5c8e71c2849d864a37 Mon Sep 17 00:00:00 2001 From: David Serduke Date: Thu, 20 Dec 2007 18:55:43 +0000 Subject: [PATCH] Fixed #2080 by removing the check for nodeType != 1. It was put in to limit the queuing to just dom objects (ie not text nodes and comment nodes), but the queuing functionality is being used more broadly than I realized so the check is now removed. --- src/fx.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/fx.js b/src/fx.js index fb564f0..b4606a8 100644 --- a/src/fx.js +++ b/src/fx.js @@ -139,9 +139,6 @@ jQuery.fn.extend({ return queue( this[0], type ); return this.each(function(){ - if ( this.nodeType != 1) - return; - if ( fn.constructor == Array ) queue(this, type, fn); else { -- 1.7.10.4