[#1005] Removed a third arugement from a poorly constructed listener

This commit is contained in:
David Seifried 2012-04-09 18:46:39 -04:00
Родитель b089f2940e
Коммит c65856b523
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -502,8 +502,8 @@ test( "Popcorn.destroy", function() {
plus();
// add some event listeners for testing
popcorn.on( "timeupdate", function( event ) { timeUpdateCounter++; }, false );
popcorn.on( "play", function( event ) { playCounter++; }, false );
popcorn.on( "timeupdate", function( event ) { timeUpdateCounter++; } );
popcorn.on( "play", function( event ) { playCounter++; } );
popcorn.play( 0 );