Skip to content

Commit

Permalink
Merge pull request #377 from raccoongang/arsentur/bugfix/remove-vimeo…
Browse files Browse the repository at this point in the history
…-progress-bar

[GREENHOST] Fix duplicated progress bars for Vimeo
  • Loading branch information
NikolayBorovenskiy authored Dec 4, 2019
2 parents fc5e754 + 22183aa commit 1d42904
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion video_xblock/static/vendor/js/Vimeo.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ THE SOFTWARE. */
this.iframe.setAttribute('id', this.options_.techId);
this.iframe.setAttribute('title', 'Vimeo Video Player');
this.iframe.setAttribute('class', 'vimeoplayer');
this.iframe.setAttribute('src', this.baseUrl + this.videoId + '?api=1&player_id=' + this.options_.techId);
this.iframe.setAttribute('src', this.baseUrl + this.videoId + '?api=1&controls=0&player_id=' + this.options_.techId);
this.iframe.setAttribute('frameborder', '0');
this.iframe.setAttribute('scrolling', 'no');
this.iframe.setAttribute('marginWidth', '0');
Expand Down

0 comments on commit 1d42904

Please sign in to comment.