diff options
| author | Omar Roth <omarroth@hotmail.com> | 2019-03-23 11:14:15 -0500 |
|---|---|---|
| committer | Omar Roth <omarroth@hotmail.com> | 2019-03-23 11:14:15 -0500 |
| commit | 1c8075ca40639c889446dae2e8644ecf9114ff8f (patch) | |
| tree | 2ebef3b44c587b77a5d09e106e8f5aa9b58acebc | |
| parent | 56b0952cd11b6d7a6f164accbe9ec3cf02350426 (diff) | |
| download | invidious-1c8075ca40639c889446dae2e8644ecf9114ff8f.tar.gz invidious-1c8075ca40639c889446dae2e8644ecf9114ff8f.tar.bz2 invidious-1c8075ca40639c889446dae2e8644ecf9114ff8f.zip | |
Add 0.25 to list of playback rates
| -rw-r--r-- | src/invidious/views/components/player.ecr | 2 | ||||
| -rw-r--r-- | src/invidious/views/preferences.ecr | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/invidious/views/components/player.ecr b/src/invidious/views/components/player.ecr index 39b76c46..4e976991 100644 --- a/src/invidious/views/components/player.ecr +++ b/src/invidious/views/components/player.ecr @@ -44,7 +44,7 @@ var options = { aspectRatio: "<%= aspect_ratio %>", <% end %> preload: "auto", - playbackRates: [0.5, 0.75, 1.0, 1.25, 1.5, 2.0], + playbackRates: [0.25, 0.5, 0.75, 1.0, 1.25, 1.5, 2.0], controlBar: { children: [ "playToggle", diff --git a/src/invidious/views/preferences.ecr b/src/invidious/views/preferences.ecr index 6a63adca..881d6fd4 100644 --- a/src/invidious/views/preferences.ecr +++ b/src/invidious/views/preferences.ecr @@ -41,7 +41,7 @@ function update_value(element) { <div class="pure-control-group"> <label for="speed"><%= translate(locale, "Default speed: ") %></label> <select name="speed" id="speed"> - <% {2.0, 1.5, 1.25, 1.0, 0.75, 0.5}.each do |option| %> + <% {2.0, 1.5, 1.25, 1.0, 0.75, 0.5, 0.25}.each do |option| %> <option <% if preferences.speed == option %> selected <% end %>><%= option %></option> <% end %> </select> |
