personnes: do not empty email field on user update form

This commit is contained in:
Serghei Mihai 2014-10-03 16:43:51 +02:00
parent d20ee7a9e4
commit 73afaff31d
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
(function($){
$(function() {
$.each(['email', 'password1', 'password2'], function(i, element) {
$.each(['password1', 'password2'], function(i, element) {
$('form input[name=' + element + ']').val('');
})
})