Commit c3e2e084 c3e2e084465aceb0574fe581b8218b2e5c68cd78 by Charlie Park

added a semicolon, to pass JS Linting

1 parent 71c7e2c7
......@@ -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');
});
}
......