Skip to content

Commit

Permalink
From code review: remove unused classnames in perivous/next buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
Dananji committed Aug 19, 2024
1 parent 961824a commit f6eac79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class VideoJSNextButton extends vjsComponent {
constructor(player, options) {
super(player, options);
this.setAttribute('data-testid', 'videojs-next-button');
this.addClass('vjs-play-control vjs-control vjs-next-btn');
this.addClass('vjs-play-control vjs-control');

this.mount = this.mount.bind(this);
this.options = options;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class VideoJSPreviousButton extends vjsComponent {
constructor(player, options) {
super(player, options);
this.setAttribute('data-testid', 'videojs-previous-button');
this.addClass('vjs-play-control vjs-control vjs-previous-btn');
this.addClass('vjs-play-control vjs-control');

this.mount = this.mount.bind(this);
this.options = options;
Expand Down

0 comments on commit f6eac79

Please sign in to comment.