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
afd39029
...
afd39029b0af77bebee8923f447db157f44fe5d7
authored
2013-09-10 09:22:56 -0600
by
hexid
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Fix error where this.emit('error', error); doesn't exist
1 parent
eb4be25d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
modules/casper.js
modules/casper.js
View file @
afd3902
...
...
@@ -380,7 +380,7 @@ Casper.prototype.checkStep = function checkStep(self, onComplete) {
}
}
catch
(
error
)
{
self
.
emit
(
'complete.error'
,
error
);
this
.
emit
(
'error'
,
error
);
self
.
emit
(
'error'
,
error
);
}
};
...
...
Please
register
or
sign in
to post a comment