Rename propertySelect to typedInput and add boolean opt

This commit is contained in:
Nick O'Leary
2016-01-03 22:26:47 +00:00
parent 5f7019325c
commit f1c59faf72
11 changed files with 345 additions and 219 deletions

View File

@@ -164,6 +164,8 @@ function evaluateNodeProperty(value, type, node, msg) {
return node.context().flow.get(value);
} else if (type === 'global' && node) {
return node.context().global.get(value);
} else if (type === 'bool') {
return /^true$/i.test(value)
}
return value;
}