Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gabonator committed Aug 24, 2023
1 parent f393fdb commit fe4f14d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions system/apps/79_cc1101osc/web/analyser.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ function remoteAnalyse(buf)
sender: window.document
}});

for (var i in extWindows)
extWindows[i].document.dispatchEvent(event);
for (var w of extWindows)
w.document.dispatchEvent(event);
}

class Memory
Expand Down
2 changes: 1 addition & 1 deletion system/apps/79_cc1101osc/web/editor/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1124,7 +1124,7 @@
if (model[i].id == "InputSignal")
{
var inp = model[i].component;
inp.data.out = new Signal(JSON.parse(newsignal))
inp.data.out = new Signal(JSON.parse(data))
editor.trigger('process');
break;
}
Expand Down

0 comments on commit fe4f14d

Please sign in to comment.