remove speed change on rewind

Confuses too many people, can be accomplished with/via other shortcuts.

Closes #24.
This commit is contained in:
Ilya Grigorik
2015-03-29 10:54:25 -07:00
parent 5656c3fc81
commit 5758280776
2 changed files with 4 additions and 5 deletions

View File

@@ -100,7 +100,6 @@ chrome.extension.sendMessage({}, function(response) {
videoTags.forEach(function(v) {
if (!v.paused && !v.classList.contains('vc-cancelled')) {
if (action === 'rewind') {
v.playbackRate = Math.max(v.playbackRate - speedStep, 0.00);
v.currentTime -= rewindTime;
} else if (action === 'faster') {
v.playbackRate += speedStep