Skip to content

Commit

Permalink
fixup! Core: QUnit logging system uses EventEmitter
Browse files Browse the repository at this point in the history
  • Loading branch information
leobalter committed Oct 27, 2015
1 parent 244fcc6 commit bf2e02c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/logging.js
Expand Up @@ -75,7 +75,7 @@ function emit( type, data ) {

callbacks = listeners[ type ];
if ( callbacks ) {
for ( i = 0, len = callbacks.length; i < len; i++ ) {
for ( i = 0; i < callbacks.length; i++ ) {
callbacks[ i ]( data );
}
}
Expand Down

0 comments on commit bf2e02c

Please sign in to comment.