Skip to content

Commit

Permalink
render urls as links, fixes #22
Browse files Browse the repository at this point in the history
  • Loading branch information
kraiz committed May 28, 2015
1 parent 33e64e9 commit 1fee2ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/partials/hubs.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
<li ng-repeat="message in $storage.chatlog[hub.huburl] track by $index">
<span class="time">{{ message.time }}</span>
<span class="nick" style="color: {{ message.nick | stringToColor }}">&lt;{{ message.nick }}&gt;</span>
<span class="text">{{ message.text }}</span>
<span class="text" ng-bind-html="message.text | linky:'_blank'"></span>
</li>
</ul>
</div>
Expand Down

0 comments on commit 1fee2ba

Please sign in to comment.