Hi Alain,
Since I have upgraded XSLTForms to r595, I encountered problems with my 
triggers (normal appearance) used in Firefox (they work fine with 
Chrome). There seems like the DOMactivate event was fired twice.
I searched in your commits and I found you have worked on events 
bubbling in r585. In /src/js/xmlevtmngt/Listener.js.xml[87] you test :

         event.target.nodeName === "BUTTON"

I think that in Firefox the nodeName is in lower case. So I tried to add :

         event.target.nodeName === "BUTTON" || event.target.nodeName === 
"button"

and now, all works correctly with Firefox, miracle !

Is it the good way to correct this bug ?

Thank you for your help,
         Benoit

------------------------------------------------------------------------------
Is your legacy SCM system holding you back? Join Perforce May 7 to find out:
• 3 signs your SCM is hindering your productivity
• Requirements for releasing software faster
• Expert tips and advice for migrating your SCM now
http://p.sf.net/sfu/perforce
_______________________________________________
Xsltforms-support mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xsltforms-support

Reply via email to