Skip to content
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

exercise15 readme fix #51

Open
wants to merge 1 commit into
base: exercise15
Choose a base branch
from
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,24 +1,24 @@
#Exercise 15 : Isolate Scope Review
# Exercise 15 : Isolate Scope Review

##Summary
## Summary
Use the arcane knowledge of scope isolation to successfully complete the task. You are provided with a unfinished template (`boxTemplate.html`)
with the form. Implement directive that will allow you to set the size of the box in each form, set color in all forms when you change it in one,
display information about the box.

##Goals
## Goals
* use `size`, `color`, `open` as names of isolated scope properties
* color should be selected from the list
* button in each of the forms should show an alert with information about the name, size and color of the specific form
* display size of the box in **h3** tag
* the size of the displayed box should change according to the size property and add appropriate attribute to `ng-style="{\'background-color\':color}"`
* use directive to create three forms with different box sizes (50px,70px,90px)

###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 @@ -28,16 +28,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