Commit 87aa8ab1 87aa8ab17111888f94a4517bfccb7a5f04c39015 by Nicolas Perriault

Merge pull request #447 from charliepark/patch-1

added a semicolon, to pass JS Linting
2 parents 71c7e2c7 c3e2e084
......@@ -67,7 +67,7 @@ Fire up your favorite editor and save the javascript code below in a
function getLinks() {
var links = document.querySelectorAll('h3.r a');
return Array.prototype.map.call(links, function(e) {
return e.getAttribute('href')
return e.getAttribute('href');
});
}
......