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,11 +1,11 @@
#Exercise 5 : Angular filters
# Exercise 5 : Angular filters

##Summary
## Summary
In this application, you are supposed to create three simple filters and use them in the right places.
You are also supposed to use build-in angular filter to filter value of `tellMe` input which should be displayed in capital letters below the table.


##Goals
## Goals
1. `quote` filter - wraps the text with quotes
2. `withoutH` filter - removes all the letters H and h
3. `firstLetterUp` filter - converts the first letter of the word to the large ones (take a look at regular expression)
Expand All @@ -18,15 +18,15 @@ You are not supposed to edit or add any CSS styles.
| withoutH | The Hobbit: The Battle of the Five Armies | Te obbit: Te Battle of te Five Armies |
|firstLetterUp|Visit News for up-to-the-minute news, breaking news, video, audio and stories. |Visit News For Up-To-The-Minute News, Breaking News, Video, Audio And Stories|

##Before you start
## Before you start
* [angularjs-filters](https://egghead.io/lessons/angularjs-filters)
* [docs.angularjs: filter](https://docs.angularjs.org/api/ng/filter)
* [regular expressions](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions)
* [regular expression online](https://regex101.com/)

##Setup
## Setup

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

```
yarn install
Expand All @@ -36,16 +36,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