Skip to content

Instantly share code, notes, and snippets.

@flushpot1125
Last active October 22, 2019 09:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flushpot1125/e2d8b33b2f604c0934c326fe2326d59d to your computer and use it in GitHub Desktop.
Save flushpot1125/e2d8b33b2f604c0934c326fe2326d59d to your computer and use it in GitHub Desktop.
define({
inputs: {
scriptLoaded: "string",
domElement: "domelement",
isAddedToDOM : "boolean",
},
outputs: {
outputValue: "number"
},
destroy: function(inputs, outputs) {
},
setup: function(inputs, outputs) {
},
run: function(inputs, outputs, changedInputs) {
if (!inputs.scriptLoaded) {
return;
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment