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
cf814807
...
cf814807dbb214f69865115133cfeda136e3b9ae
authored
2011-09-20 12:53:02 +0200
by
Nicolas Perriault
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
typo
1 parent
2de784a3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
README.md
README.md
View file @
cf81480
...
...
@@ -208,7 +208,7 @@ Example: retrieving google logo image encoded in base64:
var
base64logo
=
null
;
casper
.
start
(
'http://www.google.fr/'
,
function
(
self
)
{
base64logo
=
self
.
base64encode
(
'http://www.google.fr/images/srpr/logo3w.png'
);
}).
run
(
function
()
{
}).
run
(
function
(
self
)
{
self
.
echo
(
base64logo
);
});
```
...
...
Please
register
or
sign in
to post a comment