Skip to content

Commit

Permalink
Merge branch 'staging' of github.com:FreeCodeCamp/freecodecamp into s…
Browse files Browse the repository at this point in the history
…taging
  • Loading branch information
Quincy Larson committed Aug 22, 2015
2 parents a1cd8c8 + a28a791 commit bb64ff1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions public/js/main_0.0.3.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ $(document).ready(function() {
$('.close-modal').unbind('click');
$('.close-modal').on('click', function(){
setTimeout(function() {
$('#issue-modal').modal('hide');
}, 2000);
$('#help-modal').modal('hide');
}, 200);
});

$('#report-issue').unbind('click');
Expand Down
4 changes: 2 additions & 2 deletions seed/challenges/basic-javascript.json
Original file line number Diff line number Diff line change
Expand Up @@ -1277,8 +1277,8 @@
"description":[
"Now that our slots will each generate random numbers, we need to check whether they've all returned the same number.",
"If they have, we should notify our user that they've won.",
"Otherwise, we should return <code>null</code>, which is a JavaScript data structure that means nothing.",
"If all three numbers match, we should change the value of win to the number that we have three of or leave it as null.",
"Otherwise, we should return <code>null</code>, which is a JavaScript literal representing null or an \"empty\" value, i.e. no object value is present.",
"If all three numbers match, we should return the number that we have in three of slots or leave it as null.",
"Let's create an <code>if statement</code> with multiple conditions in order to check whether all numbers are equal.",
"<code>if(slotOne !== slotTwo || slotTwo !== slotThree){</code>",
"<code>&thinsp;&thinsp;return(null);</code>",
Expand Down

0 comments on commit bb64ff1

Please sign in to comment.