From e6a481e533dc25ecf4d25123d6515c61a97a7f19 Mon Sep 17 00:00:00 2001 From: Brandon Aaron Date: Mon, 19 Nov 2007 16:15:51 +0000 Subject: [PATCH] Fix for #1933 --- src/event.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/event.js b/src/event.js index 4927249..9922e02 100644 --- a/src/event.js +++ b/src/event.js @@ -453,5 +453,5 @@ function bindReady(){ // And prevent errors on refresh with events like mouseover // Window isn't included so as not to unbind existing unload events jQuery(window).bind("unload", function() { - $("*").add(document).unbind(); + jQuery("*").add(document).unbind(); }); -- 1.7.10.4