Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
casperjs
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
87aa8ab1
...
87aa8ab17111888f94a4517bfccb7a5f04c39015
authored
2013-04-10 06:39:06 -0700
by
Nicolas Perriault
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge pull request #447 from charliepark/patch-1
added a semicolon, to pass JS Linting
2 parents
71c7e2c7
c3e2e084
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
docs/quickstart.rst
docs/quickstart.rst
View file @
87aa8ab
...
...
@@ -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')
;
});
}
...
...
Please
register
or
sign in
to post a comment