Skip to content

Commit

Permalink
Replace <span ... /> with <span ...></span>
Browse files Browse the repository at this point in the history
```js
const div = document.createElement('div')
div.innerHTML = '<span />After',
div.innerHTML
// -> "<span>After</span>"
```
  • Loading branch information
mikesamuel committed Aug 22, 2018
1 parent 0d4bec0 commit 7e5bb89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demo/index.html
Expand Up @@ -83,7 +83,7 @@
<button id="attacker-stop" type="button">Stop</button>
</div>

<p><span id="dateNowStatus" /></p>
<p><span id="dateNowStatus"></span></p>

<h2>Sample Attacks:</h2>

Expand Down

0 comments on commit 7e5bb89

Please sign in to comment.