-
Type: Bug
-
Resolution: Done
-
Priority: Major - P3
-
Affects Version/s: 1.6.3, 1.6.4
-
Component/s: JavaScript
-
None
-
Environment:Windows 7
-
ALL
If I put the following jacascript in the console:
var SomeEvent = db.events.findOne(
);
SomeEvent.Summary =
"Some Text.\r\n\r\n" +
"Some more text.";
db.events.save(SomeEvent);
db.events.findOne(
);
I get the following:
> var SomeEvent = db.events.findOne(
);
> SomeEvent.Summary =
Expected behavior of the shell would be to hold the line ending in equals in a buffer and append the next line to it before executing.