Commit 1c294705841930531d898dbd4aa431851e75c0ac
1 parent
7c1a0d92
Exists in
master
and in
6 other branches
Correcao bug exibicao de conteudo
Showing
1 changed file
with
2 additions
and
0 deletions
Show diff stats
js/main.js
| ... | ... | @@ -259,6 +259,7 @@ define(['handlebars', 'fastclick', 'handlebars_helpers'], function(Handlebars, F |
| 259 | 259 | display_proposal: function(proposal_id){ |
| 260 | 260 | // $('#proposal-categories').hide(); |
| 261 | 261 | $('#proposal-group').hide(); |
| 262 | + $('.proposal-category-items').hide(); /* Hide Category Items */ | |
| 262 | 263 | $('nav').hide(); |
| 263 | 264 | $('#content').hide(); |
| 264 | 265 | // $('.make-proposal-form').hide(); |
| ... | ... | @@ -334,6 +335,7 @@ define(['handlebars', 'fastclick', 'handlebars_helpers'], function(Handlebars, F |
| 334 | 335 | $('#proposal-categories').show(); |
| 335 | 336 | $('#nav-proposal-categories a').addClass('active'); |
| 336 | 337 | $('#nav-proposal-group a').removeClass('active'); |
| 338 | + $('#proposal-group').hide(); /* Hide section "Programas" */ | |
| 337 | 339 | $('.proposal-category-items').hide(); |
| 338 | 340 | $('.proposal-detail').hide(); |
| 339 | 341 | $item.toggle( 'blind', 200, function () { | ... | ... |