Remove placeholders for name fields in settings (no more Sofaer)
This commit is contained in:
parent
420561c502
commit
485c0dae7f
3 changed files with 5 additions and 4 deletions
|
|
@ -35,6 +35,7 @@
|
|||
* Adjust Facebook character limit to reality [#4380](https://github.com/diaspora/diaspora/issues/4380)
|
||||
* Restore truncated URLs when posting to Twitter [#4211](https://github.com/diaspora/diaspora/issues/4211)
|
||||
* Fix mobile search tags [#4392](https://github.com/diaspora/diaspora/issues/4392)
|
||||
* Remove placeholders for name fields in settings (no more Sofaer) [#4385](https://github.com/diaspora/diaspora/pull/4385)
|
||||
|
||||
## Features
|
||||
* Admin: add option to find users under 13 (COPPA) [#4252](https://github.com/diaspora/diaspora/pull/4252)
|
||||
|
|
|
|||
|
|
@ -42,10 +42,10 @@
|
|||
%h4
|
||||
= t('profiles.edit.your_name')
|
||||
= label_tag 'profile[first_name]', t('profiles.edit.first_name')
|
||||
= text_field_tag 'profile[first_name]', profile.first_name, :placeholder => "Raphael"
|
||||
= text_field_tag 'profile[first_name]', profile.first_name
|
||||
|
||||
= label_tag 'profile[first_name]', t('profiles.edit.last_name')
|
||||
= text_field_tag 'profile[last_name]', profile.last_name, :placeholder => "Sofaer"
|
||||
= text_field_tag 'profile[last_name]', profile.last_name
|
||||
|
||||
%br
|
||||
|
||||
|
|
|
|||
|
|
@ -49,10 +49,10 @@
|
|||
%h4
|
||||
= t('profiles.edit.your_name')
|
||||
= label_tag 'profile[first_name]', t('profiles.edit.first_name')
|
||||
= text_field_tag 'profile[first_name]', profile.first_name, :placeholder => "Raphael"
|
||||
= text_field_tag 'profile[first_name]', profile.first_name
|
||||
|
||||
= label_tag 'profile[first_name]', t('profiles.edit.last_name')
|
||||
= text_field_tag 'profile[last_name]', profile.last_name, :placeholder => "Sofaer"
|
||||
= text_field_tag 'profile[last_name]', profile.last_name
|
||||
|
||||
%br
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue