Skip to content
This repository has been archived by the owner on Sep 3, 2024. It is now read-only.

Commit

Permalink
roll version
Browse files Browse the repository at this point in the history
  • Loading branch information
trsh committed Nov 15, 2018
1 parent 7102e0d commit b182149
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rete-stage0-render-plugin",
"version": "1.0.0-beta1",
"version": "1.0.0-beta2",
"description": "Rete renderer using https://www.npmjs.com/package/stage0 (~1.6 kb framewok)",
"main": "build/stage0-render-plugin.min.js",
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ function install(editor, params) {
node.context = nodeProps;
node._stage0 = createNode({ el, nodeProps, component });
node.update = () => {
node.stage0Context.update(nodeProps);
node.stage0Context.rootUpdate(nodeProps);
};
});

Expand All @@ -71,7 +71,7 @@ function install(editor, params) {
};
control._stage0 = createControl(editor, { el, control, controlProps });
control.update = () => {
control.stage0Context.update(controlProps);
control.stage0Context.rootUpdate(controlProps);
};
});

Expand Down

0 comments on commit b182149

Please sign in to comment.