From 734334a6eedd55745cfee7bcfa9ee5a2c53c28c7 Mon Sep 17 00:00:00 2001 From: Scott Downe Date: Thu, 31 May 2012 16:44:59 -0400 Subject: [PATCH] [#1117] Bug on trackstart and trackend while seeking backwards. --- popcorn.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/popcorn.js b/popcorn.js index 73058205..eee1fcab 100644 --- a/popcorn.js +++ b/popcorn.js @@ -1200,7 +1200,7 @@ natives.end.call( obj, event, byStart ); obj.emit( trackend, - Popcorn.extend({}, byEnd, { + Popcorn.extend({}, byStart, { plugin: type, type: trackend }) @@ -1237,7 +1237,7 @@ natives.start.call( obj, event, byEnd ); obj.emit( trackstart, - Popcorn.extend({}, byStart, { + Popcorn.extend({}, byEnd, { plugin: type, type: trackstart })