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
Open http://jsfiddle.net/mjahomzu/3/ Select "cow & cat"
An exception is thrown, and the last rule is not evaluated.
No exception is thrown (treated as rule matched = false), and the last rule is evaluated.
var throwException = function(){ throw 'arrrgghh!'; } var rules = [ ['control1' , 'p_section'], [throwException, 'hide' ], ['foobar' , 'show' ] ] RulesEngine.build(rules, showHideFn, false).evaluate({'control1':'foobar'})
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Steps to reproduce
Open http://jsfiddle.net/mjahomzu/3/
Select "cow & cat"
Actual Outcome
An exception is thrown, and the last rule is not evaluated.
Expected Outcome
No exception is thrown (treated as rule matched = false), and the last rule is evaluated.
Code snippet
The text was updated successfully, but these errors were encountered: