I have drag and drop events. When the ondrop is triggered, Firebug
correctly stops at a breakpoint, but then the browser stops responding
and killing it is the only possible remedy.

Here is the code:

ondrop="try { BioBrowser.dropSeqItem(event); event.stopPropagation();
event.preventDefault();} catch (err) { alert(err); }"

BioBrowser.dropSeqItem = function (event) {
try {
    var listitem = event.dataTransfer.mozGetDataAt("application/x-moz-
node", 0);
    var lb=event.target;
    lb.appendChild(listitem);
    return 1;
}
catch (err) {
    alert(err);
}
}

I am using 3.5.7 on Win XP, Chromebug 1.6.0a3, Firebug 1.5.

-- 
You received this message because you are subscribed to the Google Groups 
"Firebug" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/firebug?hl=en.

Reply via email to