Open ReyAyanami opened 9 years ago
gravatarUrl: function(email, size) { return 'http://www.gravatar.com/avatar/' + hex_md5(email) + '?s=' + size; }.auto("email", "size")
to
gravatarUrl: function({email, size}) { return 'http://www.gravatar.com/avatar/' + hex_md5(email) + '?s=' + size; }.auto("email", "size")
here you can use arguments in any order and exclude some when you observe but don't use property
to
here you can use arguments in any order and exclude some when you observe but don't use property