Skip to content

Commit

Permalink
Fixed bug in docs/airgap.js that prevented it from reading changes to…
Browse files Browse the repository at this point in the history
… the tune input (#65)
  • Loading branch information
egnima authored Dec 20, 2023
1 parent e83715b commit 4ca4653
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/airgap.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function start() { // Start Web Worker & send song data to player
};

// Send song data to player
var song = document.getElementById("tune").innerHTML;
var song = document.getElementById("tune").value;
player.postMessage(song);
}
}
Expand Down

0 comments on commit 4ca4653

Please sign in to comment.