We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Inside FormValidator.Inline:
BAD:
validate: function(field, force){ ... if (!fx && window.Fx && Fx.Scroll){ fx = new Fx.Scroll(par, { transition: 'quad:out', offset: { y: -20 } }); par.store('fvScroller', fx); } ...
SHOULD BE:
validate: function(field, force){ ... if (!fx && window.Fx && Fx.Scroll){ fx = new Fx.Scroll(par, this.options.scrollFxOptions); par.store('fvScroller', fx); } ...
The text was updated successfully, but these errors were encountered:
Sorry for double-posting this issue: http://github.com/anutron/clientcide/issuesearch?state=open&q=inline#issue/27
I wasn't sure if the right place for mootools-more issue reports was on clientcide or here on mootools-more.
Sorry, something went wrong.
This issue can be closed - the change is already in the Master branch.
No branches or pull requests
Inside FormValidator.Inline:
BAD:
SHOULD BE:
The text was updated successfully, but these errors were encountered: