Fixed opacity for modal arrow
Fixed empty last name during registration
This commit is contained in:
Igor Zhukov 2015-02-02 13:37:01 +03:00
parent 67fa3cbe73
commit 50d2c079e2
2 changed files with 3 additions and 3 deletions

View File

@ -1586,7 +1586,7 @@ div.im_dialog_photo .peer_initials {
background-size: 40px 200px;
width: 16px;
height: 24px;
opacity: 0.3;
opacity: 0.15;
position: absolute;
top: 50%;
pointer-events: none;

View File

@ -273,8 +273,8 @@ angular.module('myApp.controllers', ['myApp.i18n'])
if (forceSignUp) {
method = 'auth.signUp';
angular.extend(params, {
first_name: $scope.credentials.first_name,
last_name: $scope.credentials.last_name
first_name: $scope.credentials.first_name || '',
last_name: $scope.credentials.last_name || ''
});
}