mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2025-03-22 19:05:56 -04:00
Fixing links
This commit is contained in:
parent
bd96aaf81f
commit
600830acc5
2 changed files with 10 additions and 3 deletions
|
@ -39,7 +39,7 @@ const TTTModal = props => (
|
|||
<p className="ttt-description">{props.description}</p>
|
||||
<a
|
||||
className="button ttt-try-tutorial-button"
|
||||
href=""
|
||||
href={props.tutorialUrl}
|
||||
>
|
||||
<img src="/images/ideas/bulb-icon.svg" />
|
||||
<FormattedMessage id="ideas.tryTheTutorial" />
|
||||
|
@ -52,7 +52,10 @@ const TTTModal = props => (
|
|||
<FormattedMessage id="ideas.codingCards" />
|
||||
</div>
|
||||
<div className="ttt-item">
|
||||
<a href="">
|
||||
<a
|
||||
href={props.cardsUrl}
|
||||
target="_blank"
|
||||
>
|
||||
<FormattedMessage id="ideas.downloadPDF" />
|
||||
</a>
|
||||
</div>
|
||||
|
@ -65,7 +68,10 @@ const TTTModal = props => (
|
|||
<FormattedMessage id="ideas.educatorGuide" />
|
||||
</div>
|
||||
<div className="ttt-item">
|
||||
<a href="">
|
||||
<a
|
||||
href={props.guideUrl}
|
||||
target="_blank"
|
||||
>
|
||||
<FormattedMessage id="ideas.downloadPDF" />
|
||||
</a>
|
||||
</div>
|
||||
|
|
|
@ -158,6 +158,7 @@ class Ideas extends React.Component {
|
|||
href={this.props.intl.formatMessage({
|
||||
id: 'cards.ScratchCardsAllLink'
|
||||
})}
|
||||
target="_blank"
|
||||
>
|
||||
<Button className="ideas-button">
|
||||
<img src="/images/ideas/download-icon.svg" />
|
||||
|
|
Loading…
Reference in a new issue