Moved loads of stuff
This commit is contained in:
14
src/blocks/output.js
Normal file
14
src/blocks/output.js
Normal file
@@ -0,0 +1,14 @@
|
||||
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(){}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user