aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBrandon Aaron <brandon.aaron@gmail.com>2007-11-19 16:15:51 +0000
committerBrandon Aaron <brandon.aaron@gmail.com>2007-11-19 16:15:51 +0000
commite6a481e533dc25ecf4d25123d6515c61a97a7f19 (patch)
tree1025b9e31cc79903900f738b4e6886415b54c1fb /src
parent5e99807271ebe194b7f0278a929b053b4dd46c81 (diff)
downloadjquery-e6a481e533dc25ecf4d25123d6515c61a97a7f19.tar.gz
jquery-e6a481e533dc25ecf4d25123d6515c61a97a7f19.zip
Fix for #1933
Diffstat (limited to 'src')
-rw-r--r--src/event.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/event.js b/src/event.js
index 492724933..9922e0219 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();
});