diff --git a/modules/KalturaSupport/resources/mw.KDPMapping.js b/modules/KalturaSupport/resources/mw.KDPMapping.js index 5fe7bfbfbd..2c392188c8 100644 --- a/modules/KalturaSupport/resources/mw.KDPMapping.js +++ b/modules/KalturaSupport/resources/mw.KDPMapping.js @@ -911,6 +911,10 @@ case 'doStop': embedPlayer.stop(); break; + case 'doReplay': + embedPlayer.stop(); + embedPlayer.play(); + break; case 'doSeek': // Kaltura doSeek is in seconds rather than percentage: var percent = parseFloat( notificationData ) / embedPlayer.getDuration();