Skip to content

Commit

Permalink
refactor: Update next and previous button icons as per CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
kabir-afk committed Jun 7, 2024
1 parent 67a193b commit c98a3da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SignItVideosGallery.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ var SignItVideosGallery = function ( container ) {
this.videos = [];
this.currentIndex = 0;

this.previousVideoButton = new OO.ui.ButtonWidget( { icon: 'previous', framed: false } );
this.nextVideoButton = new OO.ui.ButtonWidget( { icon: 'next', framed: false } );
this.previousVideoButton = new OO.ui.ButtonWidget( { icon: 'previousBtn', framed: false } );
this.nextVideoButton = new OO.ui.ButtonWidget( { icon: 'nextBtn', framed: false } );
this.$videoContainer = $( '<div class="signit-panel-videos-gallery">' );

container.append( this.previousVideoButton.$element ).append( this.$videoContainer ).append( this.nextVideoButton.$element );
Expand Down

0 comments on commit c98a3da

Please sign in to comment.