Merge pull request #80 from cadecairos/t1104

Rename the error event emitted by plugins to pluginerror [#1104]
This commit is contained in:
Christopher De Cairos 2012-05-28 17:00:24 -07:00
Родитель 77a02d40bf 6e56fc14d1
Коммит c3fbed0ac0
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -1554,7 +1554,7 @@
// Trigger an error that the instance can listen for
// and react to
this.emit( "error", Popcorn.plugin.errors );
this.emit( "pluginerror", Popcorn.plugin.errors );
}
};
}

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

@ -2209,7 +2209,7 @@ test( "Exceptions", function() {
plus();
}).currentTime( 0 ).play();
this.on( "error", function( errors ) {
this.on( "pluginerror", function( errors ) {
ok( errors.length, "`errors` array has error objects" );
plus();
ok( errors[ 0 ].thrown, "`errors[ 0 ].thrown` property exists" );