Open
Conversation
…ntent view, adds form for making reservation
TREKWhat We're Looking For
I know I didn't get to grade this project on time-- we've talked this through in person. That being said: Oh no Mariko! This project wasn't completed. You were missing
I've also made a few comments on the code style That being said, hopefully things have turned around for you now with JavaScript and APIs. Let me know what questions you have, though. |
tildeee
reviewed
Jun 6, 2018
index.js
Outdated
| const URL = 'https://ada-backtrek-api.herokuapp.com/trips'; | ||
|
|
||
| const reportStatus = (message) => { | ||
| $('status-message').html(message); |
There was a problem hiding this comment.
This selector $('status-message') looks for an element <status-message> ... if you wanted the ID of that, you'd use $('#status-message')
tildeee
reviewed
Jun 6, 2018
index.js
Outdated
| }; | ||
|
|
||
| const clearForm = () => { | ||
| reservationFromFields.forEach((field) => { |
There was a problem hiding this comment.
be mindful... reservationFromFields used here is different than the reservationFORMFields you defined up above because spelling... ;)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
TREK
Congratulations! You're submitting your assignment!
Comprehension Questions