Commit 18b474646540d14987494154d36b846c795a52d3
1 parent
6aeb81e0
Exists in
master
and in
4 other branches
Update estatisticas tracking
Showing
1 changed file
with
7 additions
and
2 deletions
Show diff stats
js/main.js
| ... | ... | @@ -721,14 +721,19 @@ define(['jquery', 'handlebars', 'fastclick', 'proposal_app', 'handlebars_helpers |
| 721 | 721 | } |
| 722 | 722 | |
| 723 | 723 | if(isProposal){ |
| 724 | - trackPageTitle = 'Proposta: ' + (proposalTitle || 'todas as propostas'); | |
| 724 | + | |
| 725 | + if( proposalTitle ){ | |
| 726 | + trackPageTitle = 'Programa: ' + proposalTitle + ' / Início'); | |
| 727 | + }else{ | |
| 728 | + trackPageTitle = 'todos os programas'); | |
| 729 | + } | |
| 725 | 730 | |
| 726 | 731 | if(isResultados){ |
| 727 | 732 | trackPageTitle += ' / Resultados' ; |
| 728 | 733 | } |
| 729 | 734 | |
| 730 | 735 | if(isSobreOPrograma){ |
| 731 | - trackPageTitle += ' / Sobre o programa' ; | |
| 736 | + trackPageTitle += ' / Conheça o programa' ; | |
| 732 | 737 | } |
| 733 | 738 | } |
| 734 | 739 | ... | ... |