Skip to content

Commit

Permalink
[USABILITY] Minor positional adjustments to elements
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle West committed Feb 7, 2018
1 parent f2d9e4e commit de2a2fe
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions truthfulness.html
Original file line number Diff line number Diff line change
Expand Up @@ -92,14 +92,17 @@
</head>
<body>
<main>
<p>
Type in an expression, then hit the [Evaluate] button to see the results.
</p>
<form onsubmit="return false;">
<input type="text" id="raw-input" value="¬(p ↔ t) ∧ (¬q → ¬(r ∨ s))" onkeyup="this.value=interpretSymbols(this.value)">
<input type="text" id="raw-input" value="¬(q → ¬(r ∨ s))" onkeyup="this.value=interpretSymbols(this.value)">
<!-- <input type="text" id="raw-input" value="¬(p ↔ t) ∧ (¬q → ¬(r ∨ s))" onkeyup="this.value=interpretSymbols(this.value)"> -->
<!-- <input type="text" id="raw-input" value="(((p → q) ∧ r) ∨ s) ↔ ¬t" onkeyup="this.value=interpretSymbols(this.value)"> -->
<input type="submit" onclick="crunch(this)" value="Evaluate">
</form>
<br/><br/>
<div id="raw-results">
Type in an expression, then hit the [Evaluate] button to see the results.
</div>
<div class="notify">Copied!</div>
<div class="box-70">
Expand Down

0 comments on commit de2a2fe

Please sign in to comment.