|
From: Robert R. <rra...@ya...> - 2000-11-10 02:06:19
|
This fix in events.js (invokeEvent) should fix the problem with
doubleclick not being called in Netscape:
DynLayer.prototype.invokeEvent=function(type,e) {
...
if (is.ns4 && is.platform=="other") { // <-- the problem is here
...
change that line to:
if (is.ns4) {
Now the doubleclick should work correctly. (I hope!)
\\Robert
--
rra...@ya...
|