fix #2319 some more. This is fixing rate sticking across gapless events and reload
This commit is contained in:
parent
077c643da0
commit
1e8c4276bb
|
@ -275,6 +275,7 @@ function pauseClicked() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function vjsPause() {
|
function vjsPause() {
|
||||||
|
if ( intervalRewind )
|
||||||
stopFastRev();
|
stopFastRev();
|
||||||
streamPause();
|
streamPause();
|
||||||
}
|
}
|
||||||
|
@ -307,7 +308,7 @@ function vjsPlay() { //catches if we change mode programatically
|
||||||
if ( intervalRewind )
|
if ( intervalRewind )
|
||||||
stopFastRev();
|
stopFastRev();
|
||||||
$j('#rateValue').html(vid.playbackRate());
|
$j('#rateValue').html(vid.playbackRate());
|
||||||
Cookie.write('zmEventRate', vid.playbackRate(), {duration: 10*365});
|
Cookie.write('zmEventRate', vid.playbackRate()*100, {duration: 10*365});
|
||||||
streamPlay();
|
streamPlay();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -575,7 +576,7 @@ function getEventResponse( respObj, respText ) {
|
||||||
drawProgressBar();
|
drawProgressBar();
|
||||||
}
|
}
|
||||||
nearEventsQuery( eventData.Id );
|
nearEventsQuery( eventData.Id );
|
||||||
}
|
} // end function getEventResponse
|
||||||
|
|
||||||
var eventReq = new Request.JSON( { url: thisUrl, method: 'get', timeout: AJAX_TIMEOUT, link: 'cancel', onSuccess: getEventResponse } );
|
var eventReq = new Request.JSON( { url: thisUrl, method: 'get', timeout: AJAX_TIMEOUT, link: 'cancel', onSuccess: getEventResponse } );
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue