summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-02-15 07:10:11 +0000
committerDries Buytaert <dries@buytaert.net>2007-02-15 07:10:11 +0000
commit1346fbb78e2644a3eadc31ffb3e29826014d2f6e (patch)
tree213ea3ca826af066d2f69e5d665ae2036d19173b /misc
parent5254053812ad878471f39c9a2185f9ed98bd1e75 (diff)
downloadbrdo-1346fbb78e2644a3eadc31ffb3e29826014d2f6e.tar.gz
brdo-1346fbb78e2644a3eadc31ffb3e29826014d2f6e.tar.bz2
- Patch #118846 my mr700: fixed textareas so it works with jQuery 1.1.1.
Diffstat (limited to 'misc')
-rw-r--r--misc/textarea.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/misc/textarea.js b/misc/textarea.js
index 9a2a1658d..6fe92234d 100644
--- a/misc/textarea.js
+++ b/misc/textarea.js
@@ -23,7 +23,8 @@ Drupal.textareaAttach = function() {
}
function endDrag(e) {
- $(document).unmousemove(performDrag).unmouseup(endDrag);
+ $(document).unbind("mousemove");
+ $(document).unbind("mouseup");
textarea.css('opacity', 1);
}
});