Rewind goes back 10s and slows down speed by 10 points instead of 20

This commit is contained in:
Jordan Burgess
2014-05-14 14:26:06 +01:00
parent e5c64aa65a
commit 913ad63f00

View File

@@ -85,7 +85,7 @@ chrome.extension.sendMessage({}, function(response) {
videoTags.forEach(function(v) {
if (!v.paused && !v.classList.contains("vc-cancelled")) {
if (action === 'rewind') {
v.playbackRate -= 0.20;
v.playbackRate -= 0.10;
v.currentTime -= 10;
} else if (action === 'faster') { v.playbackRate += 0.10 }
else if (action === 'slower') { v.playbackRate -= 0.10 }