Hi, my fault, and already corrected localy. I somehow miss to commit it.
- if (!transition) {
+ if (transition == null) {
but it should be if (typeof transition == "undefined") there is a difference between null and undefined which makes me problems in the past, i don't remember where, but in this case the undefined is the correct one. Regards, Volker
