Skip to content

Commit d638677

Browse files
committed
Upgraded mathjs version, added math.js to public
1 parent 6c0d394 commit d638677

File tree

4 files changed

+228
-230
lines changed

4 files changed

+228
-230
lines changed

index.html

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
1111
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
1212
<link rel="manifest" href="/site.webmanifest">
13-
14-
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/cdn.min.js" defer></script>
1513
</head>
1614
<script>
1715
const mathWorker = new Worker("mathWorker.js", { type: "classic" });
@@ -20,9 +18,8 @@
2018
<body x-data="{showCode:true, showReport:true}">
2119
<nav class="markdown-body">
2220
<form name="topBar">
23-
<button type='button' x-on:click="showCode = !showCode"
24-
x-text="showCode?'<':'>'"
25-
x-bind:title="showCode?'hide code':'show code'"></button>
21+
<button type='button' x-on:click="showCode = !showCode" x-text="showCode?'<':'>'"
22+
x-bind:title="showCode?'hide code':'show code'"></button>
2623
<fieldset id='tabs'></fieldset>
2724
<span>
2825
<fieldset id="examples" style="float: right;">
@@ -58,13 +55,11 @@
5855
</optgroup>
5956
</select>
6057
<button type="button" id="exampleInsert" name="insertExample">+</button>
61-
<button type="button"
62-
x-on:click="showReport = !showReport"
63-
x-text="showReport ? '>':'<'"
64-
x-bind:title="showReport?'hide report':'show report'"></button>
58+
<button type="button" x-on:click="showReport = !showReport" x-text="showReport ? '>':'<'"
59+
x-bind:title="showReport?'hide report':'show report'"></button>
6560
</fieldset>
6661
</span>
67-
62+
6863
</form>
6964
</nav>
7065

0 commit comments

Comments
 (0)