Commit f99433cb959ee9206f513bf1e1df08e5ae71dcc2
1 parent
1d754b22
Exists in
master
and in
4 other branches
Insert JS with register message
Showing
1 changed file
with
6 additions
and
0 deletions
Show diff stats
theme.js
| @@ -21,9 +21,15 @@ | @@ -21,9 +21,15 @@ | ||
| 21 | $('a.view-all').each(function(){$(this).text('Veja todos');}); | 21 | $('a.view-all').each(function(){$(this).text('Veja todos');}); |
| 22 | } | 22 | } |
| 23 | 23 | ||
| 24 | + function insertRegisterMessage(){ | ||
| 25 | + //insere a mensagem na página de registro// | ||
| 26 | + $( ".action-account-signup #content form" ).prepend( "<div class='singup_text'><p>Registre-se. Crie sua conta no Participa Brasil! Este é mais um espaço de diálogo entre governo e sociedade civil. Depois que você se registrar será possível fazer comentários e/ou contribuições, participar de consultas públicas, criar blogs, participar e/ou criar comunidades, etc.</p><p>A gestão pública nunca esteve tão próxima das pessoas como agora. Faça parte desta mudança!</p><p>Seja bem vind@!</p></div>" ); | ||
| 27 | + } | ||
| 28 | + | ||
| 24 | $(document).ready(function(){ | 29 | $(document).ready(function(){ |
| 25 | addSubtitles(); | 30 | addSubtitles(); |
| 26 | addReadMoreOnTrackCards(); | 31 | addReadMoreOnTrackCards(); |
| 27 | translateButtons(); | 32 | translateButtons(); |
| 33 | + insertRegisterMessage(); | ||
| 28 | }); | 34 | }); |
| 29 | })(jQuery); | 35 | })(jQuery); |