Travis build: 442

This commit is contained in:
Travis CI
2017-12-28 22:04:46 +00:00
parent e350a0eb83
commit d4d596c1c7
4 changed files with 66 additions and 2 deletions

View File

@ -9,5 +9,5 @@ const toggleClass = (el, className) => el.classList.toggle(className);
```
```js
toggleClass(document.querySelector('p.special'),'special') // The paragraph will not have the 'special' class anymore
toggleClass(document.querySelector('p.special'), 'special'); // The paragraph will not have the 'special' class anymore
```