Skip to content

Commit

Permalink
fix: code input is now a textarea
Browse files Browse the repository at this point in the history
  • Loading branch information
shatgupt committed Oct 6, 2018
1 parent 0c6da2f commit 1e12221
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion css/runmycode-panel.css
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@
}

#runmycode-run-input {
height: 40px;
min-height: 46px;
}

#runmycode-run-output {
Expand Down
4 changes: 2 additions & 2 deletions js/codesheet.js
Original file line number Diff line number Diff line change
Expand Up @@ -193,12 +193,12 @@ const initRunner = () => {
<button id="runmycode" type="button" class="btn btn-warning btn-block btn-lg">Run</button>
<div class="panel-group">
<div class="panel panel-default panel-runner">
<div class="panel-heading" title="Command line input to Code">
<div class="panel-heading" title="STDIN to Code">
<h4 class="panel-title">Input</h4>
</div>
<div class="panel-collapse collapse">
<div class="panel-body">
<input id="runmycode-run-input" placeholder="Command line input to Code" title="Special shell characters like & should be quoted" type="text">
<textarea id="runmycode-run-input" placeholder="STDIN to Code" title="STDIN to Code"></textarea>
</div>
</div>
</div>
Expand Down

0 comments on commit 1e12221

Please sign in to comment.