When I enable extras for IMCE & try to drag the middle bar to resize the file area, my cursor gets stuck on the resizing feature and does not stop until I reload the page.
I'm experiencing this issue while using Firefox & Opera, I'm using Drupal 5.3 & the latest version of IMCE.
Firefox' web developer's toolbar gives me the following error:
Error: $(document).unmousemove is not a function
Source File: /modules/imce/imce_extras.js
Line: 61
Any suggestions for a work around or a permanent solution will be greatly appreciated.
Thanks.
Comments
Comment #1
makbeta commentedFor anyone else experiencing the issue. What I've done is disabled the extra features & then modified the following line in imce.css file to give more space for file listing:
#bodydiv {/*File list area*/
height: 115px;
overflow: auto;
}
Comment #2
ufku commentedwhich version of jquery are you using?
you should use the one that comes with Drupal5. it is 1.0.4 i guess.
Comment #3
ennetws commentedIts a jQuery/IMCE versions issue.
Try replacing the line 61 of the file 'imce_extras.js':
$(document).unmousemove(doDrag).unmouseup(endDrag);with
$(document).unbind('mousemove', doDrag).unbind('mouseup', endDrag);Hope this helps.
Comment #4
sdsheridanThis fixed it for me! Thank you so much!
Comment #5
ufku commentedcommited. thanks.
Comment #6
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.
Comment #7
naught101 commentedFor reference, I also found this bug in line 28 of /misc/textarea.js
Changing:
$(document).unmousemove(performDrag).unmouseup(endDrag);to
$(document).unbind('mousemove', performDrag).unbind('mouseup', endDrag);fixed the problem.
Comment #8
naught101 commentedI just upgraded my sites to 5.7, and this re-appeared. Possibly only in sites that include use the zen theme, or a derivative thereof. Anyway, see my previous comment for the patch.
Moving this to drupal, because I'm getting it with tinyMCE, not IMCE.
Comment #9
drummComment #10
xayberoptix commentedNaught101,
Thank you! This fixed it for me. I'm on Drupal 5.9.
Changing:
$(document).unmousemove(performDrag).unmouseup(endDrag);
to
$(document).unbind('mousemove', performDrag).unbind('mouseup', endDrag);
on line 28 of textarea.js (found at /misc/textarea.js)
Comment #11
naught101 commentedI'm gonna call this closed. it's fixed in drupal 6 and 7.