diff options
author | Brandon Aaron <brandon.aaron@gmail.com> | 2007-11-19 16:15:51 +0000 |
---|---|---|
committer | Brandon Aaron <brandon.aaron@gmail.com> | 2007-11-19 16:15:51 +0000 |
commit | e6a481e533dc25ecf4d25123d6515c61a97a7f19 (patch) | |
tree | 1025b9e31cc79903900f738b4e6886415b54c1fb /src | |
parent | 5e99807271ebe194b7f0278a929b053b4dd46c81 (diff) | |
download | jquery-e6a481e533dc25ecf4d25123d6515c61a97a7f19.tar.gz jquery-e6a481e533dc25ecf4d25123d6515c61a97a7f19.zip |
Fix for #1933
Diffstat (limited to 'src')
-rw-r--r-- | src/event.js | 2 |
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(); }); |