|
7 | 7 |
|
8 | 8 | Use the directives found in `igniteui-angularjs.js` to use [Ignite UI](http://igniteui.com) controls in [AngularJS](http://angularjs.com) pages. [Work with the running samples here](http://igniteui.github.io/igniteui-angularjs) or quickly bootstrap your AngularJS project with this preconfigured application - [Ignite UI AngularJS seed](https://github.com/IgniteUI/igniteui-angularjs-seed/). |
9 | 9 |
|
| 10 | +**IMPORTANT** The repository has been renamed from `igniteui-angular` to `igniteui-angularjs`. This is to avoid confusion caused by the new [naming convention](https://medium.com/google-developer-experts/angular-new-naming-guidelines-eacbebd09363) of Angular. |
| 11 | + |
10 | 12 | # Requirements |
11 | 13 |
|
12 | 14 | - [jQuery](http://www.jquery.com) v1.8 and later |
13 | 15 | - [AngularJS](http://www.angularjs.org) v1.0 and later |
14 | 16 | - [Ignite UI](http://www.igniteui.com) 13.1 and later |
15 | 17 |
|
16 | | -> **Note:** The Ignite UI Angular directives *do not* work with the Ignite UI ASP.NET MVC Helpers |
| 18 | +> **Note:** The Ignite UI AngularJS directives *do not* work with the Ignite UI ASP.NET MVC Helpers |
17 | 19 |
|
18 | 20 | # Install |
19 | 21 |
|
@@ -78,7 +80,7 @@ Controls can be initialized in two ways: |
78 | 80 | ## Markup Initialization |
79 | 81 |
|
80 | 82 | ### Custom tags |
81 | | -Each control implements a custom tag directive where the tag name is formed by splitting each capital letter in the control name with the `-` symbol (This naming convention follows the standard Angular normalization process). |
| 83 | +Each control implements a custom tag directive where the tag name is formed by splitting each capital letter in the control name with the `-` symbol (This naming convention follows the standard AngularJS normalization process). |
82 | 84 |
|
83 | 85 | **Note**: It is recommended to use closing tags (`</ig-combo>`) over the self-closing tags (`<ig-combo/>`), because the latter are known to make issues on some browsers (depending on the used document mode). |
84 | 86 |
|
@@ -135,7 +137,7 @@ Binding to control events is done again with attributes. Event attribute names a |
135 | 137 | |igDateEditor.events.keypress | `<ig-date-editor event-keypress="keypressHandler">` | |
136 | 138 |
|
137 | 139 | ## Controller Initialization |
138 | | -Each control also implements a custom attribute directive where the attribute name is formed by splitting each capital letter in the control name with the `-` symbol (this naming convention follows the standard Angular normalization process) and the attribute value corresponds to the scope object holding the control options. |
| 140 | +Each control also implements a custom attribute directive where the attribute name is formed by splitting each capital letter in the control name with the `-` symbol (this naming convention follows the standard AngularJS normalization process) and the attribute value corresponds to the scope object holding the control options. |
139 | 141 |
|
140 | 142 | #### Examples: |
141 | 143 |
|
@@ -180,7 +182,7 @@ The following controls currently support two-way data binding: |
180 | 182 | 3. igEditors |
181 | 183 | 4. igTree |
182 | 184 |
|
183 | | -**Note**: When using control API methods which modify the data source outside the Angular framework you need to explicitly call [Scope.$apply()](https://docs.angularjs.org/api/ng/type/$rootScope.Scope#$apply) in order to see Angular view updated. |
| 185 | +**Note**: When using control API methods which modify the data source outside the AngularJS framework you need to explicitly call [Scope.$apply()](https://docs.angularjs.org/api/ng/type/$rootScope.Scope#$apply) in order to see AngularJS view updated. |
184 | 186 |
|
185 | 187 | ## Testing |
186 | 188 | There are two kinds of tests in igniteui-angularjs: Unit tests and End to End tests. All of them are written in [Jasmine](http://jasmine.github.io/). |
|
0 commit comments