porting bug 60707 from the trunk (disable right double clicking), patch by kazhik@mozilla.gr.jp

This commit is contained in:
chanial%noos.fr 2003-03-07 15:00:04 +00:00
parent 03ce70cf0a
commit b976cc7740

View File

@ -398,6 +398,9 @@ function onCancel()
}
function onDblClick(e) {
// we only care about button 0 (left click) events
if (e.button != 0) return;
var t = e.originalTarget;
if (t.localName != "treechildren")
return;