Skip to content

Commit

Permalink
Removed old book 3 and replaced it with React book
Browse files Browse the repository at this point in the history
  • Loading branch information
stevebrownlee committed Nov 12, 2019
1 parent 5d25838 commit 2568f7e
Show file tree
Hide file tree
Showing 139 changed files with 14 additions and 4,467 deletions.
12 changes: 11 additions & 1 deletion book-2-glassdale-pd/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,16 @@

> ### __Sprint 2__ - [Welcome to Nashville](https://github.com/nashville-software-school/welcome-to-nashville)
## Review Chapters

* [Array Methods](./chapters/JS_ARRAY_METHODS.md)
* [Factory Functions](./chapters/JS_FACTORY_FUNCTION.md)
* [Using Related Data](./chapters/JS_JOINING_DATA.md)
* [Embedding Related Data with json-server](./chapters/JS_JSON_SERVER_RELATIONSHIPS.md)

## Supplementary Chapters

* Chapter 1 - [Local SSL Certificates](./chapters/LOCAL_CERTS.md)
* [Customizing the Terminal](./chapters/CLI_PERSONALIZATION.md)
* [Generator Functions](./chapters/JS_GENERATOR_FUNCTION.md)
* [CSS Variables](./chapters/CSS_VARIABLES.md)
* [Local SSL Certificates](./chapters/LOCAL_CERTS.md)
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ Remember that hidden input field you added to your HTML? Well, we can use that t
saveButton.addEventListener("click", event => {
const hiddenRecipeId = document.querySelector("#recipeId")

if (hiddenRecipeId.value <> "") {
if (hiddenRecipeId.value !== "") {
editRecipe(recipeId)
} else {
// Save functionality goes here
Expand Down
6 changes: 2 additions & 4 deletions book-2-glassdale-pd/chapters/GLASSDALE_CRIMINAL_API.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
# The Glassdale PD Criminal API

https://api.glassdale.us
For this book, you will be consuming the Glassdale Police Department Criminal API (http://criminals.glassdale.us) to help you do your job as a highly technical police detective.

## Setup

### Installations

1. Create following aliases in `.bashrc` for Windows or `.zshrc` for OSX.
```sh
alias hs="serve -l 8080"
```
1. `source ~/.zshrc` or `source ~/.bashrc`
1. `source ~/.zshrc` or `source ~/.bashrc` to make the alias active.
72 changes: 0 additions & 72 deletions book-2-glassdale-pd/chapters/MISC_DEBUGGING.md

This file was deleted.

Loading

0 comments on commit 2568f7e

Please sign in to comment.