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

exercise1 readme fix #45

Open
wants to merge 1 commit into
base: exercise1
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,23 +1,23 @@
#Exercise 1 : Binding
# Exercise 1 : Binding

##Summary
## Summary
Application displays three inputs and an artists table. Each class attribute of the row which is binded to one of the input values by order. By inputting a text will result in a color change of the table row.

##Goals
## Goals
You are required to implement a solution that will result in such behavior:
an value input should be taken as table row class attribute, so after typing 'warning' in the first input then the first table row should be displayed with a
class warning. This implies for the other input and rows as well.

###Before you start, please refer to:
### Before you start, please refer to:
* [angularjs-binding](https://egghead.io/lessons/angularjs-binding)
* **bootstrap classes** are used for coloring table rows [contextual classes](http://getbootstrap.com/css/#tables)

### + Bonus task
Try to connect input fields with columns of the table.

##Setup
## Setup

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

```
yarn install
Expand All @@ -28,16 +28,16 @@ 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 run e2e tests in development mode:

Expand Down