Commit 9653487770f7ad06885b401316aa79a6922fdcb2
Exists in
master
and in
4 other branches
Merge branch 'mensagem-ranking'
Showing
2 changed files
with
5 additions
and
2 deletions
Show diff stats
src/app/components/proposal-list/proposal-list.html
... | ... | @@ -7,7 +7,10 @@ |
7 | 7 | Colocação |
8 | 8 | <a tabindex="0" class="btn btn-link btn-question" role="button" data-toggle="popover" data-trigger="focus">?</a> |
9 | 9 | </th> |
10 | - <th>{{vm.proposals.length}} PROPOSTAS</th> | |
10 | + <th> | |
11 | + <span>{{vm.proposals.length}} PROPOSTAS</span> | |
12 | + <span class="pull-right">Posição atualizada a cada x minutos</span> | |
13 | + </th> | |
11 | 14 | </tr> |
12 | 15 | </thead> |
13 | 16 | <tbody> |
... | ... | @@ -15,6 +18,7 @@ |
15 | 18 | <td class="color-theme-fg"> |
16 | 19 | <span ng-show="proposal.ranking_position" class="position">{{::proposal.ranking_position}}º</span> |
17 | 20 | <span ng-show="proposal.position" class="position">{{::proposal.position}}º</span> |
21 | + | |
18 | 22 | </td> |
19 | 23 | <td> |
20 | 24 | <div class="row"> | ... | ... |
src/app/pages/programas/programa.html
... | ... | @@ -138,7 +138,6 @@ |
138 | 138 | <span class="glyphicon glyphicon-remove" aria-hidden="true"></span> |
139 | 139 | </button> |
140 | 140 | </div> |
141 | - <span class="pull-right font-140">Posição atualizada a cada x minutos</span> | |
142 | 141 | <div class="proposal-extended-section-content"> |
143 | 142 | <proposal-list proposals="pagePrograma.proposalsTopFive" archived="pagePrograma.article.archived"></proposal-list> |
144 | 143 | <div class="row text-center"> | ... | ... |