Skip to content

Commit

Permalink
Merge pull request #134 from MoodCat/messageAuthor
Browse files Browse the repository at this point in the history
Add a semicolon for messages.
  • Loading branch information
eanker committed Jun 25, 2015
2 parents e6c1ed2 + d57aa2f commit 403832c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/room.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ <h4 ng-bind="room.name"></h4>
<ul class="list-unstyled list-messages" id="chat-messages-list">
<li ng-repeat="message in messages" class="enter">
<strong ng-bind="message.time | date:'HH:mm'"></strong>
<strong ng-bind="message.author"></strong>
<strong><span ng-bind="message.author"></span>: </strong>
<span ng-bind="message.message"></span>
</li>
</ul>
Expand Down

0 comments on commit 403832c

Please sign in to comment.