Added inline inputs (blocks still need updating)

This commit is contained in:
2017-03-03 15:48:54 +00:00
parent 6e439be1e0
commit 537ab5f64e
8 changed files with 75 additions and 31 deletions

View File

@ -1,8 +1,14 @@
module.exports = {
name: "Caesar",
inputs: {
text: "Text",
shift: "Shift"
text: {
name: "Text"
},
shift: {
name: "Shift",
inline: true,
type: "number"
}
},
output: true,
execute: function({text, shift}, elem){

View File

@ -1,7 +1,9 @@
module.exports = {
name: "Output",
inputs: {
input: "Input"
input: {
name: "Input"
}
},
output: false,
execute: function({input}, block){