Add loadNode api to registry.js

This commit is contained in:
Nick O'Leary
2014-08-01 23:42:01 +01:00
parent 3ee98e730d
commit 1697aee9f6
9 changed files with 118 additions and 21 deletions

View File

@@ -0,0 +1,5 @@
// A test node that exports a function
module.exports = function(RED) {
function TestNode(n) {}
RED.nodes.registerType("should-not-load-1",TestNode);
}