Commit 2203e2e6614b2fec4009ad40c6d260d407fe5938
Exists in
master
and in
5 other branches
Merge branch 'master' of gitlab.com:participa/proposal-app
Showing
3 changed files
with
5 additions
and
1 deletions
Show diff stats
index.html
... | ... | @@ -374,7 +374,7 @@ |
374 | 374 | <table class="footable"> |
375 | 375 | <thead> |
376 | 376 | <tr class="header"> |
377 | - <th class="position">Posição <a href="#" class="hidden-xs"><span class="fa fa-question"></span></a></th> | |
377 | + <th class="position">Posição <a href="#/artigo/108047" class="hidden-xs"><span class="fa fa-question"></span></a></th> | |
378 | 378 | <th class="abstract-text" data-toggle="true">Propostas</th> |
379 | 379 | <th class="views" data-hide="phone">Exibições</th> |
380 | 380 | <th class="votes-for" data-hide="phone"><span class="sr-only">A favor</span><span class="fa fa-check"></span></th> | ... | ... |
js/main.js
... | ... | @@ -183,6 +183,9 @@ define(['handlebars', 'fastclick', 'handlebars_helpers'], function(Handlebars, F |
183 | 183 | } |
184 | 184 | }); |
185 | 185 | } |
186 | + $resultsContainer.find('.abstract-text .truncated').click(function() { | |
187 | + $(this).toggleClass('truncated'); | |
188 | + }); | |
186 | 189 | |
187 | 190 | // scroll to the end |
188 | 191 | $('html, body').animate({ | ... | ... |