summaryrefslogtreecommitdiff
path: root/byob.js
diff options
context:
space:
mode:
authorJens Mönig <jens@moenig.org>2015-05-01 11:56:42 -0400
committerJens Mönig <jens@moenig.org>2015-05-01 11:56:42 -0400
commitc46d8093ef7c65958fd044a6b070df1f3ba84f51 (patch)
treec0e3b2be3bcafe556875782f292e8ed5c57f770b /byob.js
parent585d1541b8ce45ba2be1367ab4ddac1b9a1095d6 (diff)
downloadsnap-c46d8093ef7c65958fd044a6b070df1f3ba84f51.tar.gz
snap-c46d8093ef7c65958fd044a6b070df1f3ba84f51.zip
indicate numeric inputs in the block prototype with the # sign
Diffstat (limited to 'byob.js')
-rw-r--r--byob.js10
1 files changed, 8 insertions, 2 deletions
diff --git a/byob.js b/byob.js
index c9f3daa..bc0f75f 100644
--- a/byob.js
+++ b/byob.js
@@ -106,7 +106,7 @@ SymbolMorph, isNil*/
// Global stuff ////////////////////////////////////////////////////////
-modules.byob = '2015-March-02';
+modules.byob = '2015-May-01';
// Declarations
@@ -2049,7 +2049,13 @@ BlockLabelFragment.prototype.defTemplateSpecFragment = function () {
)) {
suff = ' \u03BB';
} else if (this.defaultValue) {
- suff = ' = ' + this.defaultValue.toString();
+ if (this.type === '%n') {
+ suff = ' # = ' + this.defaultValue.toString();
+ } else { // 'any' or 'text'
+ suff = ' = ' + this.defaultValue.toString();
+ }
+ } else if (this.type === '%n') {
+ suff = ' #';
}
return this.labelString + suff;
};