Skip to content

Commit

Permalink
feat: Add class to error code line and make colon bold (#164)
Browse files Browse the repository at this point in the history
  • Loading branch information
bcbclifford authored and misteroneill committed Mar 23, 2019
1 parent 5aa4877 commit 7734d36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ const initPlugin = function(player, options) {
dialogContent =
`<div class="vjs-errors-content-container">
<h2 class="vjs-errors-headline">${this.localize(error.headline)}</h2>
<div><b>${this.localize('Error Code')}</b>: ${(error.type || error.code)}</div>
<div class="vjs-errors-code"><b>${this.localize('Error Code')}:</b> ${(error.type || error.code)}</div>
${details}
</div>`;

Expand Down

0 comments on commit 7734d36

Please sign in to comment.