2017-02-20 15:22:16 +00:00

15 lines
262 B
JavaScript

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