Skip to content

Commit

Permalink
change duplicate 1x speed to 1.5x speed
Browse files Browse the repository at this point in the history
  • Loading branch information
JuanPotato authored Apr 29, 2018
1 parent 1308460 commit b6310b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/media-playback.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ function setPlaybackSpeed(speed) {
controls.className = "playback-rate-controls";

const controlsList = document.createElement("ul");
const constrolsHTML = [0.5, 1, 1.25, 1, 1.75, 2]
const constrolsHTML = [0.5, 1, 1.25, 1.5, 1.75, 2]
.map(
s => `<li><a href="#" onclick="setPlaybackSpeed(${s})">${s}⨉</a></li>`
)
Expand Down

0 comments on commit b6310b6

Please sign in to comment.