Rename the error event emitted by plugins to pluginerror [#1104]

This commit is contained in:
Christopher De Cairos 2012-05-28 19:32:06 -04:00
Родитель 77a02d40bf
Коммит 6e56fc14d1
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" );