diff options
| author | Gubolin <gubolin@fantasymail.de> | 2015-01-02 10:30:00 +0100 |
|---|---|---|
| committer | Gubolin <gubolin@fantasymail.de> | 2015-01-02 10:30:00 +0100 |
| commit | aba651ba26bc9e79016b34070da5eacd407dac99 (patch) | |
| tree | 8c92107550bbce2c715e32e90f4cd9a14fde7015 /byob.js | |
| parent | 98755a4467991b6fb31563b17f8c15b1c5266294 (diff) | |
| parent | b31df39d7f126eaa303c8dae1cf6a14c739a2cc5 (diff) | |
| download | snap-anykey_issue387.tar.gz snap-anykey_issue387.zip | |
resolve merge conflictanykey_issue387
Diffstat (limited to 'byob.js')
| -rw-r--r-- | byob.js | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -106,7 +106,7 @@ SymbolMorph, isNil*/ // Global stuff //////////////////////////////////////////////////////// -modules.byob = '2014-September-30'; +modules.byob = '2014-November-20'; // Declarations @@ -688,7 +688,8 @@ CustomCommandBlockMorph.prototype.labelPart = function (spec) { return CustomCommandBlockMorph.uber.labelPart.call(this, spec); } if ((spec[0] === '%') && (spec.length > 1)) { - part = new BlockInputFragmentMorph(spec.slice(1)); + // part = new BlockInputFragmentMorph(spec.slice(1)); + part = new BlockInputFragmentMorph(spec.replace(/%/g, '')); } else { part = new BlockLabelFragmentMorph(spec); part.fontSize = this.fontSize; |
