This website works better with JavaScript.
Home
Explore
Help
Sign In
visus
/
teensy-audio
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Bugfix: import function - undefined variable
dds
Manfred Müller-Späth
9 years ago
parent
e60107aa12
commit
1b990b7ca4
1 changed files
with
1 additions
and
1 deletions
Split View
Show Diff Stats
+1
-1
gui/red/nodes.js
+ 1
- 1
gui/red/nodes.js
View File
@@ -453,7 +453,7 @@ RED.nodes = (function() {
return {
count: nodes.length,
skipped: skipped.length,
data:
count
> 0 ? JSON.stringify(nodes) : ""
data:
nodes.length
> 0 ? JSON.stringify(nodes) : ""
};
}
Write
Preview
Loading…
Cancel
Save