#196513 by yched: resizable textarea was a bit too agressive in unbinding handlers, so it made drag and drop disabled

6.x
Gábor Hojtsy 2007-11-30 23:26:58 +00:00
parent cf8ef30aa1
commit e999e23e68
1 changed files with 1 additions and 2 deletions

View File

@ -36,8 +36,7 @@ Drupal.behaviors.textarea = function(context) {
}
function endDrag(e) {
$(document).unbind("mousemove");
$(document).unbind("mouseup");
$(document).unbind("mousemove", performDrag).unbind("mouseup", endDrag);
textarea.css('opacity', 1);
}
});