Permalink
Browse files

Happychat: Changes happychat title and label messaging (#10940)

* Happychat: Changes happychat title to 'Support Chat'

* Changes happychat text prompt

Fixes #10767

* Fixes code style whitespace issue
  • Loading branch information...
1 parent 3db238c commit bc4d9b93ffe880ae50b0d011b7bc52f6e7f75eb2 @beaucollins beaucollins committed on GitHub Jan 27, 2017
Showing with 3 additions and 3 deletions.
  1. +2 −2 client/components/happychat/composer.jsx
  2. +1 −1 client/components/happychat/index.jsx
@@ -49,14 +49,14 @@ export const Composer = React.createClass( {
ref={ this.setScrollbleedTarget }
onFocus={ onFocus }
type="text"
- placeholder={ translate( 'Ask a question...' ) }
+ placeholder={ translate( 'Type a message …' ) }
onChange={ onChange }
onKeyDown={ onKeyDown }
value={ message } />
</div>
<button className="happychat__submit"
onClick={ sendMessage }>
- <svg viewBox="0 0 24 24" width="24" height="24"><path d="M2 21l21-9L2 3v7l15 2-15 2z"/></svg>
+ <svg viewBox="0 0 24 24" width="24" height="24"><path d="M2 21l21-9L2 3v7l15 2-15 2z" /></svg>
</button>
</div>
);
@@ -62,7 +62,7 @@ const connectingTitle = ( { onCloseChat } ) => {
*/
const connectedTitle = ( { onCloseChat } ) => (
<div className="happychat__active-toolbar">
- <h4>{ translate( 'WP.com' ) }</h4>
+ <h4>{ translate( 'Support Chat' ) }</h4>
<div onClick={ onCloseChat }>
<GridIcon icon="chevron-down" />
</div>

0 comments on commit bc4d9b9

Please sign in to comment.