1 | # packaged angular-aria
|
---|
2 |
|
---|
3 | This repo is for distribution on `npm` and `bower`. The source for this module is in the
|
---|
4 | [main AngularJS repo](https://github.com/angular/angular.js/tree/master/src/ngAria).
|
---|
5 | Please file issues and pull requests against that repo.
|
---|
6 |
|
---|
7 | ## Install
|
---|
8 |
|
---|
9 | You can install this package either with `npm` or with `bower`.
|
---|
10 |
|
---|
11 | ### npm
|
---|
12 |
|
---|
13 | ```shell
|
---|
14 | npm install angular-aria
|
---|
15 | ```
|
---|
16 | Then add `ngAria` as a dependency for your app:
|
---|
17 |
|
---|
18 | ```javascript
|
---|
19 | angular.module('myApp', [require('angular-aria')]);
|
---|
20 | ```
|
---|
21 |
|
---|
22 | ### bower
|
---|
23 |
|
---|
24 | ```shell
|
---|
25 | bower install angular-aria
|
---|
26 | ```
|
---|
27 |
|
---|
28 | Add a `<script>` to your `index.html`:
|
---|
29 |
|
---|
30 | ```html
|
---|
31 | <script src="/bower_components/angular-aria/angular-aria.js"></script>
|
---|
32 | ```
|
---|
33 |
|
---|
34 | Then add `ngAria` as a dependency for your app:
|
---|
35 |
|
---|
36 | ```javascript
|
---|
37 | angular.module('myApp', ['ngAria']);
|
---|
38 | ```
|
---|
39 |
|
---|
40 | ## Documentation
|
---|
41 |
|
---|
42 | Documentation is available on the
|
---|
43 | [AngularJS docs site](http://docs.angularjs.org/api/ngAria).
|
---|
44 |
|
---|
45 | ## License
|
---|
46 |
|
---|
47 | The MIT License
|
---|
48 |
|
---|
49 | Copyright (c) 2010-2015 Google, Inc. http://angularjs.org
|
---|
50 |
|
---|
51 | Permission is hereby granted, free of charge, to any person obtaining a copy
|
---|
52 | of this software and associated documentation files (the "Software"), to deal
|
---|
53 | in the Software without restriction, including without limitation the rights
|
---|
54 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
---|
55 | copies of the Software, and to permit persons to whom the Software is
|
---|
56 | furnished to do so, subject to the following conditions:
|
---|
57 |
|
---|
58 | The above copyright notice and this permission notice shall be included in
|
---|
59 | all copies or substantial portions of the Software.
|
---|
60 |
|
---|
61 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
---|
62 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
---|
63 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
---|
64 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
---|
65 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
---|
66 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
---|
67 | THE SOFTWARE.
|
---|