Skip to content

Commit

Permalink
+adding video name span to identify which is available for download
Browse files Browse the repository at this point in the history
  • Loading branch information
Bumbadawg committed Dec 23, 2015
1 parent 8b40094 commit 8ebd49d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions arte-downloader.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -463,6 +463,12 @@ function decoratePlayer(videoElement, videoElementIndex) {
container.appendChild(indexElement);
}

// Create video name span
var videoNameSpan = document.createElement('span');
videoNameSpan.innerHTML = "<strong>Download " + getVideoName(videoElementIndex) + " </strong>";
videoNameSpan.setAttribute('style', 'margin:10px; text-align: center; color:rgb(255, 255, 255); font-family: ProximaNova,Arial,Helvetica,sans-serif; font-size: 13px;');
container.appendChild(videoNameSpan);

// Create language combobox
var languageComboBox = createLanguageComboBox(videoElementIndex)
container.appendChild(languageComboBox);
Expand Down

0 comments on commit 8ebd49d

Please sign in to comment.