#196513 by yched: resizable textarea was a bit too agressive in unbinding handlers, so it made drag and drop disabled
parent
cf8ef30aa1
commit
e999e23e68
|
@ -36,8 +36,7 @@ Drupal.behaviors.textarea = function(context) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function endDrag(e) {
|
function endDrag(e) {
|
||||||
$(document).unbind("mousemove");
|
$(document).unbind("mousemove", performDrag).unbind("mouseup", endDrag);
|
||||||
$(document).unbind("mouseup");
|
|
||||||
textarea.css('opacity', 1);
|
textarea.css('opacity', 1);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue