Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
376bd0b
Start flashcard quiz prototype
a2937 Jul 20, 2025
bcbc087
more features
a2937 Jul 24, 2025
6d9bec4
add watcher
a2937 Aug 3, 2025
446d92c
use proper form element
a2937 Aug 4, 2025
2e86feb
add required attribute
a2937 Aug 4, 2025
f4e7fb6
install parcel dependency to test on localhost
eastbetsy Aug 6, 2025
3223c34
style input to make text more readable
eastbetsy Aug 6, 2025
6183934
play around with the form styles, add padding
eastbetsy Aug 7, 2025
64ab316
Merge branch 'freeCodeCamp:main' into feat/flashcard-app
eastbetsy Aug 8, 2025
bbc5bb3
update UI
eastbetsy Aug 8, 2025
358fcf3
Merge branch 'feat/flashcard-app' of https://github.com/nhcarrigan/ty…
eastbetsy Aug 8, 2025
2c74346
Delete fullstack-cert/typescript-projects/test.md
eastbetsy Aug 8, 2025
2a3a1f4
finish flashcard quiz app
eastbetsy Aug 8, 2025
c4808e3
Merge branch 'feat/flashcard-app' of https://github.com/nhcarrigan/ty…
eastbetsy Aug 8, 2025
87feffb
delete keyboard event to fix adding spaces on text area
eastbetsy Aug 8, 2025
2876534
flippable again
a2937 Aug 12, 2025
7a847c5
no changes
eastbetsy Aug 12, 2025
f69026e
Merge branch 'feat/flashcard-app' of https://github.com/nhcarrigan/ty…
eastbetsy Aug 12, 2025
e48ac2f
chore: get code prettified
shootermv Aug 13, 2025
e873227
refactor: create a FlashcardGame class
shootermv Aug 14, 2025
1fd80db
refactor: add methods to game class
shootermv Aug 14, 2025
f0d3bbe
refactor: change app container element to be main tag
shootermv Aug 14, 2025
06d2e22
refactor: make frontInput & backInput vars global
shootermv Aug 14, 2025
be91fdc
refactor: make app to take first answer & question from game object
shootermv Aug 18, 2025
a374bfd
chore: css file get formatted
shootermv Aug 18, 2025
21857cc
feat: add `flip` animation to the cards
shootermv Aug 18, 2025
89701d5
refactor: rename some redundant styles
shootermv Aug 19, 2025
94aa253
Apply suggestions from code review
a2937 Aug 22, 2025
b6cafb9
additional clamping
a2937 Aug 22, 2025
53d946b
some kind of error injection
a2937 Aug 22, 2025
1dabd4e
use querySelector
a2937 Aug 23, 2025
c4b7f64
fix missing symbols
a2937 Aug 23, 2025
6b3c744
- Completed resolution of feedback around typeguards when iterating over
ElectricMolasses Aug 24, 2025
37ce07b
- I was able to see the front of the card through the back when the card
ElectricMolasses Aug 24, 2025
be08b08
- Missed a return off one of the new type guard conditions.
ElectricMolasses Aug 24, 2025
1bdad8b
- Corrected minor unwanted formatting change left from when I was
ElectricMolasses Aug 24, 2025
7575778
Merge pull request #17 from nhcarrigan/feedback-bugfixes/flashcard-qu…
a2937 Aug 24, 2025
e1a3946
refactor: move flip button to below the flashcard
shootermv Aug 24, 2025
f61935e
refactor: move submit-listener attachment to script file
shootermv Aug 26, 2025
e3620ef
refactor: move deleteCard handler from html to script.ts
shootermv Aug 26, 2025
660fd8b
refactor: remove non-class flipCard method (since now class has its f…
shootermv Aug 27, 2025
f5926dd
refactor: remove enter keydown handler
shootermv Aug 27, 2025
9bcf30c
docs: add some comments
shootermv Aug 27, 2025
8a7dbf1
Apply suggestions from code review
a2937 Aug 27, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.parcel-cache/
dist/
node_modules/
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extends": "@parcel/config-default",
"transformers": {
"*.{ts,tsx}": ["@parcel/transformer-typescript-tsc"]
}
}
Loading