browser complete

This commit is contained in:
Moos 2018-10-14 22:21:50 -07:00
parent e56463f94d
commit 359ada5e8a
2 changed files with 2 additions and 6 deletions

View File

@ -18,9 +18,7 @@
<h1>Self-hosted WordPOS sample</h1> <h1>Self-hosted WordPOS sample</h1>
Open console to see results. Open console to see results.
<pre><code> <pre><code> </code></pre>
var a = "foo"
</code></pre>
<script> <script>
var el = document.querySelector('code'); var el = document.querySelector('code');
@ -28,7 +26,6 @@
fetch('./main.txt') fetch('./main.txt')
.then(res => res.text()) .then(res => res.text())
.then(txt => { .then(txt => {
// console.log(111, txt)
el.innerText = txt; el.innerText = txt;
hljs.initHighlightingOnLoad(); hljs.initHighlightingOnLoad();
}); });

View File

@ -296,7 +296,6 @@ const LEX_NAMES = [
'adj.ppl' 'adj.ppl'
]; ];
// console.log(333, typeof export)
module.exports= { module.exports= {
indexLookup, indexLookup,
is, is,