mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
9 lines
294 B
HTML
9 lines
294 B
HTML
<script type="text/javascript">
|
|
console.log("Loaded test-plugin/test-editor-plugin")
|
|
RED.plugins.registerPlugin("my-test-editor-only-plugin", {
|
|
type: "bar",
|
|
onadd: function() {
|
|
console.log("my-test-editor-only-plugin.onadd called")
|
|
}
|
|
})
|
|
</script> |