Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
mastodon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Pierre Boudes
mastodon
Commits
76449df9
Commit
76449df9
authored
7 years ago
by
Eugen Rochko
Committed by
GitHub
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix character counter not updating for bio (#3101)
parent
226c9836
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
app/javascript/packs/public.js
+1
-1
1 addition, 1 deletion
app/javascript/packs/public.js
app/views/settings/profiles/show.html.haml
+2
-2
2 additions, 2 deletions
app/views/settings/profiles/show.html.haml
config/locales/simple_form.en.yml
+6
-6
6 additions, 6 deletions
config/locales/simple_form.en.yml
with
9 additions
and
9 deletions
app/javascript/packs/public.js
+
1
−
1
View file @
76449df9
...
...
@@ -101,7 +101,7 @@ document.addEventListener('DOMContentLoaded', () => {
});
delegate
(
document
,
'
.account_note
'
,
'
input
'
,
({
target
})
=>
{
const
[
noteCounter
,
]
=
document
.
getElementsByClassName
(
'
.
note-counter
'
);
const
[
noteCounter
,
]
=
document
.
getElementsByClassName
(
'
note-counter
'
);
noteCounter
.
textContent
=
160
-
length
(
target
.
value
);
});
});
This diff is collapsed.
Click to expand it.
app/views/settings/profiles/show.html.haml
+
2
−
2
View file @
76449df9
...
...
@@ -5,8 +5,8 @@
=
render
'shared/error_messages'
,
object:
@account
.fields-group
=
f
.
input
:display_name
,
placeholder:
t
(
'simple_form.labels.defaults.display_name'
),
hint:
t
(
'simple_form.hints.defaults.display_name'
,
count:
"<span class=
\"
name-counter
\"
>
#{
30
-
@account
.
display_name
.
size
}
</span>"
).
html_safe
=
f
.
input
:note
,
placeholder:
t
(
'simple_form.labels.defaults.note'
),
hint:
t
(
'simple_form.hints.defaults.note'
,
count:
"<span class=
\"
note-counter
\"
>
#{
160
-
@account
.
note
.
size
}
</span>"
).
html_safe
=
f
.
input
:display_name
,
placeholder:
t
(
'simple_form.labels.defaults.display_name'
),
hint:
t
(
'simple_form.hints.defaults.display_name'
,
count:
30
-
@account
.
display_name
.
size
).
html_safe
=
f
.
input
:note
,
placeholder:
t
(
'simple_form.labels.defaults.note'
),
hint:
t
(
'simple_form.hints.defaults.note'
,
count:
160
-
@account
.
note
.
size
).
html_safe
=
f
.
input
:avatar
,
wrapper: :with_label
,
input_html:
{
accept:
AccountAvatar
::
IMAGE_MIME_TYPES
.
join
(
','
)
},
hint:
t
(
'simple_form.hints.defaults.avatar'
)
=
f
.
input
:header
,
wrapper: :with_label
,
input_html:
{
accept:
AccountHeader
::
IMAGE_MIME_TYPES
.
join
(
','
)
},
hint:
t
(
'simple_form.hints.defaults.header'
)
...
...
This diff is collapsed.
Click to expand it.
config/locales/simple_form.en.yml
+
6
−
6
View file @
76449df9
...
...
@@ -4,14 +4,14 @@ en:
hints
:
defaults
:
avatar
:
PNG, GIF or JPG. At most 2MB. Will be downscaled to 120x120px
display_name
:
one
:
'
1
character
left'
other
:
'
%{count}
characters
left'
display_name
:
one
:
'
<span
class="name-counter">1</span>
character
left'
other
:
'
<span
class="name-counter">
%{count}
</span>
characters
left'
header
:
PNG, GIF or JPG. At most 2MB. Will be downscaled to 700x335px
locked
:
Requires you to manually approve followers and defaults post privacy to followers-only
note
:
one
:
'
1
character
left'
other
:
'
%{count}
characters
left'
note
:
one
:
'
<span
class="note-counter">1</span>
character
left'
other
:
'
<span
class="note-counter">
%{count}
</span>
characters
left'
imports
:
data
:
CSV file exported from another Mastodon instance
sessions
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment