Remove the backslash escaping from JavaScript challenge output (e.g. \")

This commit is contained in:
benmcmahon100
2015-08-01 20:45:07 +01:00
parent 0a34dcf6c3
commit dc0f72292a

View File

@ -110,6 +110,7 @@ function bonfireExecute() {
runTests('Error', null);
} else {
codeOutput.setValue(message.output);
codeOutput.setValue(codeOutput.getValue().replace(/\\\"/gi,''));
message.input = removeLogs(message.input);
runTests(null, message);
}