Commit 2203e2e6614b2fec4009ad40c6d260d407fe5938

Authored by Evandro Jr
2 parents 4ead5ee5 74345552

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([&#39;handlebars&#39;, &#39;fastclick&#39;, &#39;handlebars_helpers&#39;], 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({
... ...
sass/style.sass
... ... @@ -786,6 +786,7 @@ td
786 786 text-align: center
787 787 .abstract-text
788 788 width: 80%
  789 + cursor: pointer
789 790 p
790 791 margin: inherit
791 792 .value
... ...