mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-23 15:47:53 -05:00
Merge pull request #1010 from TheGrits/patch-2
Fix gh-1009: Add Tutorials Button
This commit is contained in:
commit
8878726084
2 changed files with 5 additions and 2 deletions
|
@ -83,8 +83,9 @@
|
|||
"general.art": "Art",
|
||||
"general.games": "Games",
|
||||
"general.music": "Music",
|
||||
"general.stories": "Stories",
|
||||
"general.results": "Results",
|
||||
"general.stories": "Stories",
|
||||
"general.tutorials": "Tutorials",
|
||||
|
||||
"general.teacherAccounts": "Teacher Accounts",
|
||||
|
||||
|
|
|
@ -27,7 +27,8 @@ var Explore = injectIntl(React.createClass({
|
|||
art: 'art',
|
||||
games: 'games',
|
||||
music: 'music',
|
||||
stories: 'stories'
|
||||
stories: 'stories',
|
||||
tutorials: 'tutorial'
|
||||
};
|
||||
var typeOptions = ['projects','studios'];
|
||||
var modeOptions = ['trending', 'popular', 'recent', ''];
|
||||
|
@ -152,6 +153,7 @@ var Explore = injectIntl(React.createClass({
|
|||
{this.getBubble('games')}
|
||||
{this.getBubble('music')}
|
||||
{this.getBubble('stories')}
|
||||
{this.getBubble('tutorials')}
|
||||
</SubNavigation>
|
||||
<Form className='sort-mode'>
|
||||
<Select name="sort"
|
||||
|
|
Loading…
Reference in a new issue