Rename breakOnUnsupportedCmds to throwOnError.

Also, the MathBb-chrome test changed, to what I believe is the correct
result? Not sure why it looked wrong before.

Test plan:
 - `make test`
 - take screenshots, see nothing changed.
This commit is contained in:
Emily Eisenberg
2015-09-01 16:44:48 -07:00
parent c428abca1e
commit d6cec8a861
8 changed files with 21 additions and 22 deletions

View File

@@ -21,7 +21,7 @@ function Settings(options) {
// allow null options
options = options || {};
this.displayMode = get(options.displayMode, false);
this.breakOnUnsupportedCmds = get(options.breakOnUnsupportedCmds, true);
this.throwOnError = get(options.throwOnError, true);
this.errorColor = get(options.errorColor, "#cc0000");
}