Skip to content

Commit

Permalink
Update readme with bower installation steps
Browse files Browse the repository at this point in the history
  • Loading branch information
eyupatis committed Jan 12, 2015
1 parent 64b8eee commit 2e30173
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,24 @@ Install with npm
npm install angular-validation
```

or with bower

```
bower install angular-validation
```

Using angular-validation
---
```html
<script src="dist/angular-validation.js"></script>
<script src="dist/angular-validation-rule.js"></script>
```
Using angular-validation with bower
---
```html
<script src="lib/angular-validation/dist/angular-validation.js"></script>
<script src="lib/angular-validation/dist/angular-validation-rule.js"></script>
```
```js
angular.module('yourApp', ['validation']);

Expand Down

0 comments on commit 2e30173

Please sign in to comment.