In Node Lists you have this example:
model.addNodeList('nodes');
model.nodes.addHandler([], ['name'], function(input, output) {
output.name = 'node #' + (index + 1);
});
Which is wrong for two reasons:
- does not have an input
- uses the now-gone
index param
In Node Lists you have this example:
Which is wrong for two reasons:
indexparam