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 ...@@ -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
......