Browse Source

Merge pull request #660 from marrus-sh/mastodon-smart-back-button

#467 – Making the back button a little smarter
closed-social-glitch-2
Eugen 7 years ago
committed by GitHub
parent
commit
0924eee81b
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      app/assets/javascripts/components/components/column_back_button.jsx

+ 2
- 1
app/assets/javascripts/components/components/column_back_button.jsx View File

@ -15,7 +15,8 @@ const ColumnBackButton = React.createClass({
mixins: [PureRenderMixin],
handleClick () {
this.context.router.goBack();
if (window.history && window.history.length == 1) this.context.router.push("/");
else this.context.router.goBack();
},
render () {

Loading…
Cancel
Save