Skip to content

Commit

Permalink
Adding space between band name
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMuellenator authored Mar 6, 2024
1 parent 07dbae4 commit e9080b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ $(document).ready(function () {
$(document).on("keydown", function (e) {
var x = event.which || event.keyCode;
if (x === 13 || x == 13) {
var consoleLine = $("#" + CurrentId + " input").val();
var consoleLine = $("#" + CurrentId + " " + "input").val();

console.log(consoleLine);
bandName += consoleLine;
Expand Down

0 comments on commit e9080b6

Please sign in to comment.