We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1f280c commit 33d943dCopy full SHA for 33d943d
1 file changed
public/js/create_user.js
@@ -48,8 +48,8 @@ function getNewUser(){
48
setData('email', user.email);
49
50
var birthday = new Date(user.dob.date);
51
- setData('birthday', birthday.getMonth()+1+'/'+(birthday.getDay()+1)+'/19'+birthday.getYear());
52
- setData('location', user.location.street);
+ setData('birthday', birthday.getMonth() + 1 + '/' + (birthday.getDay() + 1) + '/19' + birthday.getYear());
+ setData('location', user.location.street.number + " " + user.location.street.name);
53
setData('phone', user.cell);
54
setData('pass', user.login.password);
55
} else {
0 commit comments