Skip to content

Commit

Permalink
Fixes mozilla#803 - removed alt for anchors + fixed a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mmmavis committed Apr 24, 2015
1 parent 234baa0 commit ab875e1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
11 changes: 4 additions & 7 deletions components/sidebar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,7 @@ var Sidebar = React.createClass({
subItems: [
{
name: "Web Literacy",
link: "web-literacy",
help: "skills and competencies needed for reading, writing and participating on the web."
link: "web-literacy"
}
]
},
Expand All @@ -49,13 +48,11 @@ var Sidebar = React.createClass({
subItems: [
{
name: "Clubs Curriculum",
link: "clubs-curriculum",
help: "Activities to teach the web in your club."
link: "clubs-curriculum"
},
{
name: "Clubs Toolkit",
link: "clubs-toolkit",
help: "todo hover tooltip"
link: "clubs-toolkit"
}
]
}
Expand Down Expand Up @@ -101,7 +98,7 @@ var Sidebar = React.createClass({
entry.subItems.map(function (item, key) {
return (
<li key={key}>
<Link to={item.link} title={item.help}>
<Link to={item.link}>
{item.name}
</Link>
</li>
Expand Down
2 changes: 1 addition & 1 deletion pages/web-literacy.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ var ActivitiesPage = React.createClass({
<li>Using hyperlinks to access a range of resources on the web.</li>
<li>Reading, evaluating, and manipulating URLs.</li>
<li>Recognizing the common visual cues in the services.</li>
<li>Exploring browser add-ons and extensions to provice additional functionality.</li>
<li>Exploring browser add-ons and extensions to provide additional functionality.</li>
</ul>
</Expander>
<Expander head="web mechanics">
Expand Down

0 comments on commit ab875e1

Please sign in to comment.