You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With v1.1.0 under Firefox, if the option finishButton is true, then the _bindFinish method is called... however the var finish won't be assigned to the 'submit' button, line #132
finish = that.children('input[type="submit"]');
finish will be set to null, but a jQuery alternative is
finish = $(':submit',that);
The text was updated successfully, but these errors were encountered:
Try to change to .find().
Maybe the button is inside another container and it's not a children.
But, it should be a children, than let me know why it is not.
since this is a programmatically generated form for a cms. I’ll probably just lean toward a locally customized version of stepy, e.g., having a ‘body’ style in the stepy jquery plugin tends to mess with the overall page styling.
Thanks for the good work!
Dave Leffler
From: Washington Botelho [mailto:[email protected]]
Sent: Monday, June 03, 2013 10:43 AM
To: wbotelhos/stepy
Cc: dleffler
Subject: Re: [stepy] _bindFinish fails on Firefox (#24)
Try to change to .find().
Maybe the button is inside another container and it's not a children.
But, it should be a children, than let me know why it is not.
—
Reply to this email directly or view it on GitHub #24 (comment) .Image removed by sender.
With v1.1.0 under Firefox, if the option finishButton is true, then the _bindFinish method is called... however the var finish won't be assigned to the 'submit' button, line #132
finish = that.children('input[type="submit"]');
finish will be set to null, but a jQuery alternative is
finish = $(':submit',that);
The text was updated successfully, but these errors were encountered: