Persist video volume in a cookie so that subsequent events remember the volume level.
This commit is contained in:
parent
b5ef7b08b9
commit
74d2ba56db
|
@ -1077,6 +1077,12 @@ function initPage() {
|
||||||
vid.on('click', function(event) {
|
vid.on('click', function(event) {
|
||||||
handleClick(event);
|
handleClick(event);
|
||||||
});
|
});
|
||||||
|
vid.on('volumechange', function() {
|
||||||
|
Cookie.write('volume', vid.volume(), {duration: 10*365});
|
||||||
|
});
|
||||||
|
if ( Cookie.read('volume') != null ) {
|
||||||
|
vid.volume(Cookie.read('volume'));
|
||||||
|
}
|
||||||
vid.on('timeupdate', function() {
|
vid.on('timeupdate', function() {
|
||||||
$j('#progressValue').html(secsToTime(Math.floor(vid.currentTime())));
|
$j('#progressValue').html(secsToTime(Math.floor(vid.currentTime())));
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue