Skip to content

Commit

Permalink
Merge pull request facebook#26 from spicyj/nsn
Browse files Browse the repository at this point in the history
<noscript /> -> null in todomvc-flux Footer
  • Loading branch information
jingc committed Aug 11, 2014
2 parents c0c2f42 + a712d2d commit 5fc3915
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/flux-todomvc/js/components/Footer.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ var Footer = React.createClass({
var total = Object.keys(allTodos).length;

if (total === 0) {
return <noscript />;
return null;
}

var completed = 0;
Expand Down

0 comments on commit 5fc3915

Please sign in to comment.