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
416f226d
...
416f226d0391f09bf53d7819e0f14bdc30623397
authored
2013-12-15 04:54:42 +0100
by
mickaelandrieu
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
#687 - resolved issue by changing event listeners order
1 parent
d4496518
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
modules/events.js
modules/events.js
View file @
416f226
...
...
@@ -129,7 +129,7 @@ EventEmitter.prototype.addListener = function addListener(type, listener) {
}
else
if
(
isArray
(
this
.
_events
[
type
]))
{
// If we've already got an array, just append.
this
.
_events
[
type
].
push
(
listener
);
this
.
_events
[
type
].
unshift
(
listener
);
// Check for listener leak
if
(
!
this
.
_events
[
type
].
warned
)
{
...
...
@@ -151,7 +151,7 @@ EventEmitter.prototype.addListener = function addListener(type, listener) {
}
}
else
{
// Adding the second element, need to change to array.
this
.
_events
[
type
]
=
[
this
.
_events
[
type
],
listener
];
this
.
_events
[
type
]
=
[
listener
,
this
.
_events
[
type
]
];
}
return
this
;
...
...
Please
register
or
sign in
to post a comment