Travis build: 2165

This commit is contained in:
30secondsofcode
2018-06-19 17:59:43 +00:00
parent 1c8e535a41
commit 1e4ebaf4c0
15 changed files with 125 additions and 16 deletions

View File

@ -9,5 +9,5 @@ const insertAfter = (el, htmlString) => el.insertAdjacentHTML('afterend', htmlSt
```
```js
insertAfter(document.getElementById('myId'),'<p>after</p>'); // <div id="myId">...</div> <p>after</p>
insertAfter(document.getElementById('myId'), '<p>after</p>'); // <div id="myId">...</div> <p>after</p>
```