Small bug fixes

This commit is contained in:
Sam Potts
2017-11-04 14:45:06 +11:00
parent 1cc2930dc0
commit 069c8093ae
6 changed files with 26 additions and 43 deletions

View File

@ -78,6 +78,15 @@ const vimeo = {
player.media.paused = true;
player.media.currentTime = 0;
// Playback speed
// Not currently supported in Vimeo
Object.defineProperty(player.media, 'playbackRate', {
get() {
return null;
},
set() {},
});
// Rebuild UI
ui.build.call(player);