mirror of
				https://github.com/lunaisnotaboy/mastodon.git
				synced 2025-10-30 03:15:26 +00:00 
			
		
		
		
	Merge pull request #655 from marrus-sh/mastodon-frontend-character-count
Fixes #263; makes JavaScript's character counting the same as Ruby's
This commit is contained in:
		
						commit
						5a7590d94c
					
				|  | @ -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…
	
		Reference in a new issue