15 lines
268 B
JavaScript
15 lines
268 B
JavaScript
module.exports = {
|
|
name: "Output",
|
|
inputs: {
|
|
input: "Input"
|
|
},
|
|
output: false,
|
|
execute: function({input}, block){
|
|
$(block.elem).find("span.output").html(input);
|
|
},
|
|
pageBlock: {
|
|
html: "<span class='output'></span>",
|
|
js: function(){}
|
|
}
|
|
}
|