Browse Source

Bugfixes

Fixed opacity for modal arrow
Fixed empty last name during registration
master
Igor Zhukov 10 years ago
parent
commit
50d2c079e2
  1. 2
      app/css/desktop.css
  2. 4
      app/js/controllers.js

2
app/css/desktop.css

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

4
app/js/controllers.js

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

Loading…
Cancel
Save