|
I have a problem with dragevent.js that you can't handdle mouseup on a
layer
has set the dragevents on... the mouseup must handdle when you mousedown-no move's mouse-mouseup this is handdle with DragEvent.docListener. { . . . if (!de.isDragging) { de.type="dragend"; de.src="null; e.setBubble(true); return; } . . . I sugest to change to ... ... if (!de.isDragging) { de.type="dragend"; de.src="null; lyr.invokeEvent("nodrag",de) // SUGGESTION e.setBubble(true); return; } ... to track onmouseup with "onnodrag". What do you think? Gabriel Suchowolski www.microbians.com - [EMAIL PROTECTED] |
