-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix moment.js deprecation warning #53
Merged
karismatic-megafauna
merged 1 commit into
karismatic-megafauna:master
from
vvv1559:fix_moment_js
Oct 19, 2017
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -80,3 +80,5 @@ yarn-debug.log* | |
yarn-error.log* | ||
.vscode/launch.json | ||
package-lock.json | ||
|
||
.idea/ | ||
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
{ | ||
"title": "Chelsea High School School Working Day Calculator", | ||
"data": [ | ||
{ "date": "10/23/2017", "reason": "Teacher Day - No School" }, | ||
{ "date": "11/22/2017", "reason": "Thanksgiving Recess" }, | ||
{ "date": "11/23/2017", "reason": "Thanksgiving Recess" }, | ||
{ "date": "11/24/2017", "reason": "Thanksgiving Recess" }, | ||
{ "date": "12/25/2017", "reason": "December Recess" }, | ||
{ "date": "12/26/2017", "reason": "December Recess" }, | ||
{ "date": "12/27/2017", "reason": "December Recess" }, | ||
{ "date": "12/28/2017", "reason": "December Recess" }, | ||
{ "date": "12/29/2017", "reason": "December Recess" }, | ||
{ "date": "1/1/2018", "reason": "New Year's Day - No School" }, | ||
{ "date": "1/15/2018", "reason": "MLK Day - No School" }, | ||
{ "date": "2/19/18", "reason": "Winter Recess" }, | ||
{ "date": "2/20/2018", "reason": "Winter Recess" }, | ||
{ "date": "2/21/18", "reason": "Winter Recess" }, | ||
{ "date": "2/22/2018", "reason": "Winter Recess" }, | ||
{ "date": "2/23/2018", "reason": "Winter Recess" }, | ||
{ "date": "3/30/2018", "reason": "Good Friday - No School" }, | ||
{ "date": "4/16/2018", "reason": "Spring Recess" }, | ||
{ "date": "4/17/2018", "reason": "Spring Recess" }, | ||
{ "date": "4/18/2018", "reason": "Spring Recess" }, | ||
{ "date": "4/19/2018", "reason": "Spring Recess" }, | ||
{ "date": "4/20/2018", "reason": "Spring Recess" }, | ||
{ "date": "5/28/2017", "reason": "Memorial Day - No School" } | ||
{ "date": "2017-10-23", "reason": "Teacher Day - No School" }, | ||
{ "date": "2017-11-22", "reason": "Thanksgiving Recess" }, | ||
{ "date": "2017-11-23", "reason": "Thanksgiving Recess" }, | ||
{ "date": "2017-11-24", "reason": "Thanksgiving Recess" }, | ||
{ "date": "2017-12-25", "reason": "December Recess" }, | ||
{ "date": "2017-12-26", "reason": "December Recess" }, | ||
{ "date": "2017-12-27", "reason": "December Recess" }, | ||
{ "date": "2017-12-28", "reason": "December Recess" }, | ||
{ "date": "2017-12-29", "reason": "December Recess" }, | ||
{ "date": "2018-01-01", "reason": "New Year's Day - No School" }, | ||
{ "date": "2018-01-15", "reason": "MLK Day - No School" }, | ||
{ "date": "2018-02-19", "reason": "Winter Recess" }, | ||
{ "date": "2018-02-20", "reason": "Winter Recess" }, | ||
{ "date": "2018-02-21", "reason": "Winter Recess" }, | ||
{ "date": "2018-02-22", "reason": "Winter Recess" }, | ||
{ "date": "2018-02-23", "reason": "Winter Recess" }, | ||
{ "date": "2018-03-30", "reason": "Good Friday - No School" }, | ||
{ "date": "2018-04-16", "reason": "Spring Recess" }, | ||
{ "date": "2018-04-17", "reason": "Spring Recess" }, | ||
{ "date": "2018-04-18", "reason": "Spring Recess" }, | ||
{ "date": "2018-04-19", "reason": "Spring Recess" }, | ||
{ "date": "2018-04-20", "reason": "Spring Recess" }, | ||
{ "date": "2018-05-28", "reason": "Memorial Day - No School" } | ||
] | ||
} |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sure it can't hurt!
what is this for, out of curiosity :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If you are using IDE from JetBrains (I use WebStorm for web stack) - the IDE put own files into
.idea
path. It is unnecessary put those files into repository. This row hide path and subfiles for GIT version control system