Fixed an issue where event handlers with no return value would block any...
Fixed an issue where event handlers with no return value would block any further event handlers from executing. This was caused due to the return value being undefined, and !undefined evaluates to true. Fixing that alone would have caused the event stack to never get smaller however, so an else was added to the if statement.
parent
510c8d35
Please register or sign in to comment