Skip to content

Commit

Permalink
fix: playback rate default text (#4558)
Browse files Browse the repository at this point in the history
Previously, the default text only said `1` now it says `1x` which matches the look after changing the playback rate.
  • Loading branch information
rafaelgaspar authored and gkatsev committed Aug 14, 2017
1 parent 1f3375e commit a6b8425
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class PlaybackRateMenuButton extends MenuButton {

this.labelEl_ = Dom.createEl('div', {
className: 'vjs-playback-rate-value',
innerHTML: 1.0
innerHTML: '1x'
});

el.appendChild(this.labelEl_);
Expand Down

0 comments on commit a6b8425

Please sign in to comment.