mirror of
https://github.com/perlbot/perlbuut-pastebin
synced 2025-06-07 14:17:26 -04:00
Use array.join instead
This commit is contained in:
parent
c7a9d182d3
commit
abee78b6e7
1 changed files with 2 additions and 1 deletions
|
@ -287,8 +287,9 @@
|
|||
outputarr = [data.evalout[keys[0]]];
|
||||
}
|
||||
console.log("outputarr", outputarr);
|
||||
console.log(outputarr.join("\n"));
|
||||
|
||||
$('#eval').text(Array.join(outputarr, "\n"));
|
||||
$('#eval').text(outputarr.join("\n"));
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue