Merge branch 'staging' of github.com:FreeCodeCamp/freecodecamp into staging
This commit is contained in:
2
CONTRIBUTING.md
Normal file
2
CONTRIBUTING.md
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
We're getting a lot of duplicate issues and bug reports that just aren't reporting actual bugs.
|
||||||
|
So, before you submit your issue, please read the [Help! I've Found a Bug](https://github.com/FreeCodeCamp/FreeCodeCamp/wiki/Help!-I've-Found-a-Bug) wiki page.
|
@ -62,7 +62,7 @@ $(document).ready(function() {
|
|||||||
$('.close-modal').unbind('click');
|
$('.close-modal').unbind('click');
|
||||||
$('.close-modal').on('click', function(){
|
$('.close-modal').on('click', function(){
|
||||||
setTimeout(function() {
|
setTimeout(function() {
|
||||||
$('#help-modal').modal('hide');
|
$('.close-modal').parent().parent().parent().parent().modal('hide');
|
||||||
}, 200);
|
}, 200);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -843,7 +843,7 @@
|
|||||||
"<code>  ourArray.push(i);</code>",
|
"<code>  ourArray.push(i);</code>",
|
||||||
"<code>  i++;</code>",
|
"<code>  i++;</code>",
|
||||||
"<code>}</code>",
|
"<code>}</code>",
|
||||||
"Let's try getting a for loop to work by pushing values to an array."
|
"Let's try getting a while loop to work by pushing values to an array."
|
||||||
],
|
],
|
||||||
"tests":[
|
"tests":[
|
||||||
"assert(editor.getValue().match(/while/g), 'You should be using a while loop for this.');",
|
"assert(editor.getValue().match(/while/g), 'You should be using a while loop for this.');",
|
||||||
|
@ -786,7 +786,7 @@
|
|||||||
"difficulty": 3.16,
|
"difficulty": 3.16,
|
||||||
"description": [
|
"description": [
|
||||||
"You can also target all the even-numbered elements.",
|
"You can also target all the even-numbered elements.",
|
||||||
"Here's how you would target all the odd-numbered elements with class <code>target</code> and give them classes: <code>$('.target:odd').addClass('animated shake');</code>",
|
"Here's how you would target all the odd-numbered elements with class <code>target</code> and give them classes: <code>$(\".target:odd\").addClass(\"animated shake\");</code>",
|
||||||
"Try selecting all the even-numbered elements - that is, what your browser will consider even-numbered elements - and giving them the classes of <code>animated</code> and <code>shake</code>."
|
"Try selecting all the even-numbered elements - that is, what your browser will consider even-numbered elements - and giving them the classes of <code>animated</code> and <code>shake</code>."
|
||||||
],
|
],
|
||||||
"tests": [
|
"tests": [
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
a(href='//github.com/FreeCodeCamp/freecodecamp/wiki/How-to-install-Screenhero' target='_blank') Screenhero
|
a(href='//github.com/FreeCodeCamp/freecodecamp/wiki/How-to-install-Screenhero' target='_blank') Screenhero
|
||||||
| .
|
| .
|
||||||
h3 Other campers may then message you about pair programming.
|
h3 Other campers may then message you about pair programming.
|
||||||
a.btn.btn-lg.btn-primary.btn-block(href='https://gitter.im/FreeCodeCamp/LetsPair', data-dismiss='modal', aria-hidden='true' target='_blank') Take me to the pair programming room
|
a.btn.btn-lg.btn-primary.btn-block.close-modal(href='https://gitter.im/FreeCodeCamp/LetsPair', target='_blank') Take me to the pair programming room
|
||||||
a.btn.btn-lg.btn-info.btn-block(href='#', data-dismiss='modal', aria-hidden='true') Cancel
|
a.btn.btn-lg.btn-info.btn-block(href='#', data-dismiss='modal', aria-hidden='true') Cancel
|
||||||
|
|
||||||
#issue-modal.modal(tabindex='-1')
|
#issue-modal.modal(tabindex='-1')
|
||||||
|
Reference in New Issue
Block a user