muses-code-js/js-intro-workshop

Error in the example in js/lever-3.js

AnnaCheba opened this issue · 1 comments

On line 264 we have: var pageNode = document.querySelector('body')[0];
Should be: var pageNode = document.querySelector('body');

Get rid of [0] in the end.

Fixed in #12 :)