diff options
| author | Jens Mönig <jens@moenig.org> | 2015-02-28 06:09:01 -0800 |
|---|---|---|
| committer | Jens Mönig <jens@moenig.org> | 2015-02-28 06:09:01 -0800 |
| commit | b1d78532557371dfc740c078c76c13e8e0f66896 (patch) | |
| tree | 542787f086b2d6bc6e26374a335d3c4defeb3615 | |
| parent | e1a558a6739a59085e95161827662512a6d7fa78 (diff) | |
| download | snap-b1d78532557371dfc740c078c76c13e8e0f66896.tar.gz snap-b1d78532557371dfc740c078c76c13e8e0f66896.zip | |
fixed #716
| -rw-r--r-- | byob.js | 4 | ||||
| -rwxr-xr-x | history.txt | 1 |
2 files changed, 3 insertions, 2 deletions
@@ -106,7 +106,7 @@ SymbolMorph, isNil*/ // Global stuff //////////////////////////////////////////////////////// -modules.byob = '2015-January-21'; +modules.byob = '2015-February-28'; // Declarations @@ -2974,7 +2974,7 @@ InputSlotDialogMorph.prototype.editSlotOptions = function () { new DialogBoxMorph( myself, function (options) { - myself.fragment.options = options; + myself.fragment.options = options.trim(); }, myself ).promptCode( diff --git a/history.txt b/history.txt index bc49af2..1f0ec00 100755 --- a/history.txt +++ b/history.txt @@ -2457,3 +2457,4 @@ ______ * Blocks, Store, GUI: Cache inputs, accelerates evaluating recursive reporters and warped / turbo recursive commands by up to 40% * Objects: slightly optimize warped / turbo execution * Threads: fixed #715 +* BYOB: fixed #716 |
