Commit 9e049ace authored by Nick Stenning's avatar Nick Stenning

Merge pull request #2704 from hypothesis/2702-fix-diplay-of-num-replies-on-collapsed-replies

Fix display of num replies on collapsed replies
parents 6be66ac0 c4da6adc
...@@ -15,6 +15,14 @@ ...@@ -15,6 +15,14 @@
ng-href="{{vm.baseURI}}u/{{vm.annotation.user}}" ng-href="{{vm.baseURI}}u/{{vm.annotation.user}}"
>{{vm.annotation.user | persona}}</a> >{{vm.annotation.user | persona}}</a>
</span> </span>
<span class="annotation-collapsed-replies">
<a class="reply-count small" href=""
ng-click="replyCountClick()"
ng-pluralize count="replyCount"
when="{'0': '', 'one': '1 reply', 'other': '{} replies'}"></a>
</span>
<br> <br>
<span class="annotation-header__share-info"> <span class="annotation-header__share-info">
<a class="annotation-header__group" <a class="annotation-header__group"
...@@ -39,13 +47,6 @@ ...@@ -39,13 +47,6 @@
<span class="u-flex-spacer"></span> <span class="u-flex-spacer"></span>
<span class="annotation-collapsed-replies">
<a class="reply-count small" href=""
ng-click="replyCountClick()"
ng-pluralize count="replyCount"
when="{'0': '', 'one': '1 reply', 'other': '{} replies'}"></a>
</span>
<!-- Timestamp --> <!-- Timestamp -->
<a class="annotation-timestamp" <a class="annotation-timestamp"
target="_blank" target="_blank"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment