Merge branch 'dropdown' of https://github.com/blackle/mastodon into blackle-dropdown
This commit is contained in:
commit
3bddd647e0
6 changed files with 25 additions and 5 deletions
|
@ -20,6 +20,7 @@ import LoadingIndicator from '../../components/loading_indicator';
|
|||
import ActionBar from './components/action_bar';
|
||||
import Column from '../ui/components/column';
|
||||
import ColumnBackButton from '../../components/column_back_button';
|
||||
import { isMobile } from '../../is_mobile'
|
||||
|
||||
const makeMapStateToProps = () => {
|
||||
const getAccount = makeGetAccount();
|
||||
|
@ -34,6 +35,10 @@ const makeMapStateToProps = () => {
|
|||
|
||||
const Account = React.createClass({
|
||||
|
||||
contextTypes: {
|
||||
router: React.PropTypes.object
|
||||
},
|
||||
|
||||
propTypes: {
|
||||
params: React.PropTypes.object.isRequired,
|
||||
dispatch: React.PropTypes.func.isRequired,
|
||||
|
@ -71,6 +76,9 @@ const Account = React.createClass({
|
|||
|
||||
handleMention () {
|
||||
this.props.dispatch(mentionCompose(this.props.account));
|
||||
if (isMobile(window.innerWidth)) {
|
||||
this.context.router.push('/statuses/new');
|
||||
}
|
||||
},
|
||||
|
||||
render () {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue