From 1346fbb78e2644a3eadc31ffb3e29826014d2f6e Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Thu, 15 Feb 2007 07:10:11 +0000 Subject: - Patch #118846 my mr700: fixed textareas so it works with jQuery 1.1.1. --- misc/textarea.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'misc') 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); } }); -- cgit v1.2.3