added a semicolon, to pass JS Linting
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -67,7 +67,7 @@ Fire up your favorite editor and save the javascript code below in a | ... | @@ -67,7 +67,7 @@ Fire up your favorite editor and save the javascript code below in a |
67 | function getLinks() { | 67 | function getLinks() { |
68 | var links = document.querySelectorAll('h3.r a'); | 68 | var links = document.querySelectorAll('h3.r a'); |
69 | return Array.prototype.map.call(links, function(e) { | 69 | return Array.prototype.map.call(links, function(e) { |
70 | return e.getAttribute('href') | 70 | return e.getAttribute('href'); |
71 | }); | 71 | }); |
72 | } | 72 | } |
73 | 73 | ... | ... |
-
Please register or sign in to post a comment