Browse Source

Merge pull request #655 from marrus-sh/mastodon-frontend-character-count

Fixes #263; makes JavaScript's character counting the same as Ruby's
closed-social-glitch-2
Eugen 7 years ago
committed by GitHub
parent
commit
5a7590d94c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/assets/javascripts/components/features/compose/components/character_counter.jsx

+ 1
- 1
app/assets/javascripts/components/features/compose/components/character_counter.jsx View File

@ -10,7 +10,7 @@ const CharacterCounter = React.createClass({
mixins: [PureRenderMixin],
render () {
const diff = this.props.max - this.props.text.length;
const diff = this.props.max - this.props.text.replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]/g, "_").length;
return (
<span style={{ fontSize: '16px', cursor: 'default' }}>

Loading…
Cancel
Save