Skip to content

Commit 32efab9

Browse files
kwstasnadrew-gross
authored andcommitted
Changed Sidebar Footer links to open in a new tab (#460)
* Changed Sidebar Footer links to open in a new tab * Changed Sidebar Footer links to open in a new tab corrected
1 parent c93050a commit 32efab9

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

β€Žsrc/components/Sidebar/FooterMenu.react.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ export default class FooterMenu extends React.Component {
4242
position={this.state.position}
4343
onExternalClick={() => this.setState({ show: false })}>
4444
<div className={styles.popup}>
45-
<a href='https://www.parse.com/docs/server/guide'>Server Guide <span className={styles.emoji}>πŸ“š</span></a>
46-
<a href='https://www.parse.com/help'>Help <span className={styles.emoji}>πŸ’Š</span></a>
45+
<a target='_blank' href='https://www.parse.com/docs/server/guide'>Server Guide <span className={styles.emoji}>πŸ“š</span></a>
46+
<a target='_blank' href='https://www.parse.com/help'>Help <span className={styles.emoji}>πŸ’Š</span></a>
4747
</div>
4848
</Popover>
4949
);

β€Žsrc/components/Sidebar/Sidebar.react.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,9 @@ const Sidebar = ({
7777
})}
7878
</div>
7979
<div className={styles.footer}>
80-
<a href='https://parseplatform.github.io'>Open Source</a>
81-
<a href='https://www.parse.com/docs'>Docs</a>
82-
<a href='https://www.parse.com/downloads'>Downloads</a>
80+
<a target='_blank' href='https://parseplatform.github.io'>Open Source</a>
81+
<a target='_blank' href='https://www.parse.com/docs'>Docs</a>
82+
<a target='_blank' href='https://www.parse.com/downloads'>Downloads</a>
8383
<FooterMenu />
8484
</div>
8585
</div>

0 commit comments

Comments
Β (0)