0

Does 37signals manipulate the image on the server side? Or do they use javascript to center and crop the user's image on the client-side?

Jackson Henley
  • 1,531
  • 2
  • 15
  • 27

1 Answers1

1

It's happening client side with the border-radius CSS rules (in a todo's comment section):

img.avatar {
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
}
dzanot
  • 63
  • 1
  • 5