Skip to content

Commit

Permalink
Changed Sidebar Footer links to open in a new tab corrected
Browse files Browse the repository at this point in the history
  • Loading branch information
kwstasna committed Jul 13, 2016
1 parent 005cf83 commit c7a572a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/components/Sidebar/FooterMenu.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ export default class FooterMenu extends React.Component {
position={this.state.position}
onExternalClick={() => this.setState({ show: false })}>
<div className={styles.popup}>
<a target="_blank" href='https://www.parse.com/docs/server/guide'>Server Guide <span className={styles.emoji}>πŸ“š</span></a>
<a target="_blank" href='https://www.parse.com/help'>Help <span className={styles.emoji}>πŸ’Š</span></a>
<a target='_blank' href='https://www.parse.com/docs/server/guide'>Server Guide <span className={styles.emoji}>πŸ“š</span></a>
<a target='_blank' href='https://www.parse.com/help'>Help <span className={styles.emoji}>πŸ’Š</span></a>
</div>
</Popover>
);
Expand Down
6 changes: 3 additions & 3 deletions src/components/Sidebar/Sidebar.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ const Sidebar = ({
})}
</div>
<div className={styles.footer}>
<a target="_blank" href='https://parseplatform.github.io'>Open Source</a>
<a target="_blank" href='https://www.parse.com/docs'>Docs</a>
<a target="_blank" href='https://www.parse.com/downloads'>Downloads</a>
<a target='_blank' href='https://parseplatform.github.io'>Open Source</a>
<a target='_blank' href='https://www.parse.com/docs'>Docs</a>
<a target='_blank' href='https://www.parse.com/downloads'>Downloads</a>
<FooterMenu />
</div>
</div>
Expand Down

0 comments on commit c7a572a

Please sign in to comment.