add ellipsis to initial load message for consistency

This commit is contained in:
Jeremy Kauffman 2016-09-24 15:27:07 -04:00 committed by GitHub
parent f598517e27
commit d7ec67c4ee

View file

@ -39,7 +39,7 @@ var WatchPage = React.createClass({
render: function() {
return (
!this.state.readyToPlay
? <LoadScreen message={'Loading video'} details={this.state.loadStatusMessage} />
? <LoadScreen message={'Loading video...'} details={this.state.loadStatusMessage} />
: <main className="full-screen">
<video ref="player" width="100%" height="100%">
<source type={(this.state.mimeType == 'audio/m4a' || this.state.mimeType == 'audio/mp4a-latm') ? 'video/mp4' : this.state.mimeType} src={'/view?name=' + this.props.name} />