Moved loads of stuff

This commit is contained in:
2017-02-27 11:17:16 +00:00
parent a96d786e23
commit 2b323470b4
44 changed files with 4 additions and 4 deletions

14
src/blocks/output.js Normal file
View 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(){}
}
}