Skip to content

Commit 508d62d

Browse files
committed
Replace PNG icon with SVG icon in node development document
1 parent a1cf3a0 commit 508d62d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/creating-nodes/appearance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ a node instance, as well as for the node's entry in the palette. In this latter
2727

2828
{% highlight javascript %}
2929
...
30-
icon: "file.png",
30+
icon: "file.svg",
3131
...
3232
{% endhighlight %}
3333

docs/creating-nodes/first-node.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,9 @@ For more information about the runtime part of the node, see [here](node-js).
116116
defaults: {
117117
name: {value:""}
118118
},
119-
inputs:1,
120-
outputs:1,
121-
icon: "file.png",
119+
inputs: 1,
120+
outputs: 1,
121+
icon: "file.svg",
122122
label: function() {
123123
return this.name||"lower-case";
124124
}

0 commit comments

Comments
 (0)