Skip to content
Open
Changes from all commits
Commits
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
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
#Exercise 19: Building Zippy
# Exercise 19: Building Zippy

##Summary
## Summary
Application displays a basic directive component that is used to donate money for whatever cause you want.
Complete `money` directive functionality using the acquired knowledge about ng-model, ng-click and transclusion (without controller).

##Goals
## Goals
* button content text should be automatically updated when the text is entered into the `forWhat` field
* selecting the amount should automatically update ***I want to devote: $x*** paragraph (where **x** is selected amount)
* message `Shut up and take my money!` should show when you press the button and hide when you press it again (create and use `toggleContent` function)
* use `forWhat` and `howMany` as isolated scope variable names

###Before you start, please refer to:
### Before you start, please refer to:
* [angularjs-isolate-scope-review](https://egghead.io/lessons/angularjs-isolate-scope-review)

##Setup
## Setup

###To install dependencies
### To install dependencies

```
yarn install
Expand All @@ -25,16 +25,16 @@ yarn install
bower install
```

###To start application in live reload mode
### To start application in live reload mode

grunt serve

###Jshint
### Jshint
To run verify jshint:

grunt jshint:default

###Run tests
### Run tests

To unit tests in development mode:

Expand Down