Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
misteroneill committed Oct 11, 2016
1 parent 7ec6fce commit 981b64d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/js/tracks/text-track-settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ class TextTrackSettings extends Component {

return createEl('fieldset', {
className: 'vjs-fg-color vjs-tracksetting'
}, undefined, [legend, select, opacity]);
}, undefined, [legend].concat(select, opacity));
}

/**
Expand All @@ -324,7 +324,7 @@ class TextTrackSettings extends Component {

return createEl('fieldset', {
className: 'vjs-bg-color vjs-tracksetting'
}, undefined, [legend, select, opacity]);
}, undefined, [legend].concat(select, opacity));
}

/**
Expand All @@ -347,7 +347,7 @@ class TextTrackSettings extends Component {

return createEl('fieldset', {
className: 'vjs-window-color vjs-tracksetting'
}, undefined, [legend, select, opacity]);
}, undefined, [legend].concat(select, opacity));
}

/**
Expand Down

0 comments on commit 981b64d

Please sign in to comment.