Commit Graph

253 Commits

Author SHA1 Message Date
Quincy Larson
bf17a54b75 add time estimates to challenge blocks on map 2015-10-12 22:56:10 -07:00
Logan Tegman
41fc89b3c5 Fix Waypoint Iterate with a For Loop Typo
Closes #3691
2015-10-10 09:17:36 -07:00
Anton Strömkvist
7dcb422ce3 Merge pull request #3661 from BradenWhited/fix/Lesson-31-More-Concise-Comment
Fix - Comment In Lesson 31 Needs To Be More Concise
2015-10-09 08:14:38 +02:00
Braden Whited
ba9c4a694e Lesson 31 - Javascript Generate random whole numbers within a range comment error #1947
Comment needed changed to be more concise.

See #1947
2015-10-08 17:47:06 -04:00
Anton Strömkvist
6397eda8dc Merge pull request #3603 from ltegman/fix/find-white-space-explaination-2838
Fix Waypoint: Find White Space Explaination
2015-10-08 16:19:46 +02:00
Quincy Larson
0b583dd9b3 fix message on slot machine challenge 2015-10-07 18:33:01 -07:00
Quincy Larson
c709daabd1 update challenge sequence and break on boarding into two sections 2015-10-07 00:41:43 -07:00
Logan Tegman
668852fdc7 Fix Waypoint: Find Whitespace spelling and grammar. 2015-10-06 08:45:21 -07:00
ahstro
39b4a73efb 'Regular Expressions'-waypoint improvements
* Remove unnecessary `i`-flag from tests and test messages,
  e.g. `/\s+/gi` => `/\s+/g`
* Remove dupliate backslashes from regex test messages,
  e.g. `/\\s+/g` => `/\s+/g`

The two backslashes were probably just an accident caused by how
multiple escapes are necessary with the current way tests are handled.
The `i`-flag was just unnecessary since its purpose is to ignore the
case of alphabetic characters.
2015-10-06 15:13:53 +02:00
Logan Tegman
57d0e5750b Fix Waypoint: Find White Space Explaination
Changed text description to make it clear that `\s` is used to find all types of whitespace characters, not just `" "`.
Closes #2838
2015-10-05 22:50:09 -07:00
Quincy Larson
344a5b9103 Merge branch 'staging' into map-restructure
Conflicts:
	seed/challenges/basic-ziplines.json
	seed/challenges/intermediate-ziplines.json
2015-10-02 11:23:54 -07:00
Quincy Larson
b78696463d remove vestigial difficulty attribute from challenges 2015-10-02 01:06:27 -07:00
Quincy Larson
8dc908aa30 restructure challenges and add certificate challenge skeletons 2015-10-01 23:54:20 -07:00
Berkeley Martinez
266a505cfb Merge pull request #3548 from FreeCodeCamp/converge-bonfires
refactor all Bonfire tests to use assert and have friendly messages
2015-09-30 19:47:20 -07:00
Quincy Larson
e71d748e91 Merge branch 'staging' into converge-bonfires
Conflicts:
	seed/challenges/basic-bonfires.json
	seed/challenges/intermediate-bonfires.json
2015-09-30 19:06:28 -07:00
Quincy Larson
eb7aaf4c64 fix exact change and QA all JS challenges 2015-09-30 18:33:32 -07:00
Mike
44e43000c2 Remove Unnecessary Left Over Semicolon
Remove left over semicolon from function that was converted from an anonymous function at https://github.com/FreeCodeCamp/FreeCodeCamp/issues/3287
2015-09-30 02:40:21 -04:00
Aniruddh Agarwal
1a6927afce Merge pull request #3520 from abhisekp/fix/waypoint-manipulate-arrays-with-unshift
Minor fix comments in Waypoint: Manipulate Arrays With unshift
2015-09-28 09:19:05 +08:00
Abhisek Pattnaik
b5141f50ae Fix comments in Waypoint: Manipulate Arrays With unshift 2015-09-28 03:45:13 +05:30
Abhisek Pattnaik
86c07dcd97 Correct comment
Replace "ourArray[1]" with "ourArray"
close FreeCodeCamp/FreeCodeCamp#3515
2015-09-28 01:04:59 +05:30
Arsen Melikyan
bdbc1dcc96 Merge pull request #3342 from avastu/Fix-title-case
Fixes "Javascript uses use" typos
2015-09-17 15:23:04 +04:00
Utsav Ahuja
83badc55af Fixed "Javascript uses use" typo 2015-09-17 01:04:00 -07:00
Quincy Larson
f289eb9201 Merge branch 'patch-4' of https://github.com/souldreamer/FreeCodeCamp into souldreamer-patch-4
Conflicts:
	seed/challenges/basic-javascript.json
2015-09-13 23:35:27 -07:00
Quincy Larson
2922be8d98 minor improvements to suggested edits 2015-09-13 23:26:03 -07:00
Quincy Larson
6dae5b8436 Merge branch 'bugron-basic_js_fix-3' of https://github.com/bugron/FreeCodeCamp into bugron-bugron-basic_js_fix-3 2015-09-13 21:03:00 -07:00
Quincy Larson
c94b50d186 Merge branch 'bugron-basic_js_fix-2' of https://github.com/bugron/FreeCodeCamp into bugron-bugron-basic_js_fix-2
Conflicts:
	seed/challenges/basic-javascript.json
2015-09-13 20:59:54 -07:00
Quincy Larson
4707bf1b1a small copy improvements to @bugron fixes 2015-09-13 20:55:51 -07:00
Quincy Larson
a90bf90e2a Merge branch 'bugron-basic_js_fix-1' of https://github.com/bugron/FreeCodeCamp into bugron-bugron-basic_js_fix-1 2015-09-13 20:48:46 -07:00
Quincy Larson
06f0d80d7b Merge pull request #3266 from leonfeng/leonfeng-fix-3208
Change the example in Waypoint: Manipulate Arrays With unshift()
2015-09-13 20:22:30 -07:00
Joel Bentley
023aca6a75 Add explanation of how values passed to function 2015-09-13 16:02:25 -04:00
Joel Bentley
4163b376bf Remove unneeded tests 2015-09-13 15:34:54 -04:00
Joel Bentley
815f460fd8 Modify sample function in code to match form of sample function in description 2015-09-13 14:04:52 -04:00
bugron
4321d85b4c Fixes typos, word issues in Basic JS, part 3 2015-09-13 09:10:30 +04:00
bugron
fec58a7afb Fixes typos, word issues in Basic JS, part 2 2015-09-13 09:02:54 +04:00
bugron
428ab7016c Fixes typos, word issues in Basic JS, part 1 2015-09-13 08:52:51 +04:00
Berkeley Martinez
2f5e59cd36 Merge pull request #2892 from bugron/bugron-2256
fixes a test and some text
2015-09-12 21:31:46 -07:00
Leon Feng
fdecf1a5cf Change the unshift() example to make it less confusing to beginners 2015-09-13 03:54:24 +08:00
Joel Bentley
ff2c297142 Fix description of Waypoint: Find Numbers with Regular Expressions 2015-09-12 15:00:04 -04:00
Aniruddh Agarwal
cf8c663c6d Added external link to substantiate js waypoint
Added a link to FCC wiki to provide explanation of the formula used in the 'Create a JavaScript Slot Machine' basic javascript waypoint as well as the "Generate Random Whole Numbers within a Range" waypoint
closes #2595
2015-09-10 20:20:58 +08:00
bugron
8fed7d7f91 fixes a test and some text 2015-09-09 18:32:20 +04:00
Arsen Melikyan
ad16d75a34 Merge pull request #3125 from natac13/change-test-in-javascript-challenges-and-add-optional-spaces-in-jquery-aswell
Test improvements, single and double quote jQuery selectors
2015-09-09 08:39:42 +04:00
Aniruddh Agarwal
bb9ceb46f5 Fix typo in basic-javascript waypoint
Waypoint 'Invert Regular Expression Matches with JavaScript' had a semi-colon in the description for the regex example which is not needed.
closes #3148
2015-09-09 11:52:21 +08:00
Arsen Melikyan
410c1f3c3e Merge pull request #3181 from awesomeaniruddh/awesomeaniruddh-3169
Fixed typo in Basic Javascript Waypoint
2015-09-09 07:44:40 +04:00
Arsen Melikyan
812e4c9467 Merge pull request #3102 from AryanJ-NYC/AryanJ-NYC-1875
Clarified instructions for shift() challenge
2015-09-09 07:25:03 +04:00
Aniruddh Agarwal
4769ece009 Fixed typo in Basic Javascript Waypoint
Waypoint 'Sift through Text with Regular Expressions' had `...` in its description instead of `.`. Made the required changes.
closes #3169
2015-09-09 10:02:08 +08:00
Aryan Jabbari
f835e9617a Clarifies instructions for shift() challenge; closes #1875 2015-09-08 17:31:15 -04:00
Anton Strömkvist
7dfd84cf5e Merge pull request #3087 from bugron/bugron-toLowerCase_fix
Fixes 'd[0].toLowerCase() is not a function' error
2015-09-08 22:33:54 +02:00
Anton Strömkvist
38b2ff2a54 Merge pull request #3091 from bugron/bugron-divide_fix
fixes a condition in assert
2015-09-08 22:29:04 +02:00
Anton Strömkvist
a8cd3e909f Merge pull request #3088 from bugron/bugron-add_two_num-fix
fixes assert and adds a dot
2015-09-08 22:24:11 +02:00
Arsen Melikyan
38e134666a Merge pull request #3153 from ahstro/ahstro-3152
Move brace out of user-edit scope
2015-09-08 23:25:25 +04:00