Installed jQuery Update module and found that the "grippies" at the bottom of form textareas no longer behave properly. You can grab them and move them, but then you can't let go of them; the only way I found to regain control of my cursor was to reload the page. Deactivated the module and reverted to the Drupal version of jquery.js in /misc and everything went back to normal.

CommentFileSizeAuthor
#2 jquery_update_textarea_fix.patch413 byteswhisk

Comments

whisk’s picture

Status: Active » Needs review

Seems compat.js fails to provide mappings for old-style events binding. Strange. For jQuery 1.2.3, I used this patch.
Find following line in misc/textarea.js:

      $(document).unmousemove(performDrag).unmouseup(endDrag);

replace with

      $(document).unbind('mousemove', performDrag).unbind('mouseup', endDrag);
whisk’s picture

StatusFileSize
new413 bytes

Prepared a patch.

Mark B’s picture

Patch works great for me - nice work whisk!

heddn’s picture

Issue summary: View changes
Status: Needs review » Closed (won't fix)

Marking this as won't fixed. 5.x is no longer supported/maintained. If this is still an issue in 7.x, then please re-open.