Merge pull request #159 from shmidtkirill/patch-2

Syntax error
This commit is contained in:
Ilya Kantor 2015-10-17 13:17:30 +03:00
commit 81c2414f81

View file

@ -222,7 +222,7 @@ If we'd like to add several `<script>` tags on the page and keep their execution
Like this:
```js
function addScript(src);
function addScript(src){
let script = document.createElement('script');
script.src = src;
*!*