@@ -21,7 +21,7 @@ animations on top of the template code we created before.
21
21
## Dependencies
22
22
23
23
The animation functionality is provided by Angular in the `ngAnimate` module, which is distributed
24
- separately from the core Angular framework. In addition we will use `JQuery ` in this project to do
24
+ separately from the core Angular framework. In addition we will use `jQuery ` in this project to do
25
25
extra JavaScript animations.
26
26
27
27
We are using [Bower][bower] to install client side dependencies. This step updates the
@@ -49,8 +49,8 @@ We are using [Bower][bower] to install client side dependencies. This step upda
49
49
50
50
* `"angular-animate": "~1.2.x"` tells bower to install a version of the
51
51
angular-animate component that is compatible with version 1.2.x.
52
- * `"jquery": "1.10.2"` tells bower to install the 1.10.2 version of JQuery . Note that this is not an
53
- Angular library, it is the standard JQuery library. We can use bower to install a wide range of 3rd
52
+ * `"jquery": "1.10.2"` tells bower to install the 1.10.2 version of jQuery . Note that this is not an
53
+ Angular library, it is the standard jQuery library. We can use bower to install a wide range of 3rd
54
54
party libraries.
55
55
56
56
We must ask bower to download and install this dependency. We can do this by running:
@@ -255,7 +255,7 @@ which are described in detail below.
255
255
Next let's add an animation for transitions between route changes in {@link api/ngRoute.directive:ngView `ngView`}.
256
256
257
257
To start, let's add a new CSS class to our HTML like we did in the example above.
258
- This time, instead of the `ng-repeat` element, let's add it to the element containing the ng-view directive.
258
+ This time, instead of the `ng-repeat` element, let's add it to the element containing the ` ng-view` directive.
259
259
In order to do this, we'll have to make some small changes to the HTML code so that we can have more control over our
260
260
animations between view changes.
261
261
@@ -346,7 +346,7 @@ over). This works fluidly so that pages flow naturally between route changes wit
346
346
jumping around.
347
347
348
348
The CSS classes applied (the start and end classes) are much the same as with `ng-repeat`. Each time
349
- a new page is loaded the ng-view directive will create a copy of itself, download the template and
349
+ a new page is loaded the ` ng-view` directive will create a copy of itself, download the template and
350
350
append the contents. This ensures that all views are contained within a single HTML element which
351
351
allows for easy animation control.
352
352
0 commit comments