hlship / tapx

Extensions to Tapestry 5
http://tapestry.formos.com/projects/tapx/
29 stars 7 forks source link

Using Confirm mixin with a Form in a Zone fails in FireFox 3 #29

Closed hlship closed 13 years ago

hlship commented 13 years ago

Seems to require a Submit with mode="cancel" as well.

Fails in this code:

    function doAction() {
        if ($T(element).hasAction) {
            element.fire(Tapestry.ACTION_EVENT, event);
            return;
        }

because event is not defined.

Works in chrome, which simply doesn't complain about the undefined value.