Commit 9e6a95dbcb57611c9b7fa05d48034f5ddccef9bb

Authored by Victor Costa
1 parent c95174cf

Clear signup messages

Showing 1 changed file with 4 additions and 0 deletions   Show diff stats
js/main.js
... ... @@ -1366,6 +1366,10 @@ define(['jquery', 'handlebars', 'fastclick', 'proposal_app', 'handlebars_helpers
1366 1366 window.lastCaptcha.destruir();
1367 1367 }
1368 1368  
  1369 + var message = $('.signup .message');
  1370 + message.hide();
  1371 + message.text('');
  1372 +
1369 1373 var loginForm = $(this).parents('#login-form');
1370 1374 var signupForm = loginForm.siblings('#signup-form');
1371 1375 window.signupForm = signupForm;
... ...