Skip to content

Commit e63f670

Browse files
mgolbtford
authored andcommitted
docs(content): update Angular 1.2 mentions to Angular 1.3
Angular 1.3 docs now describe the process of using this version instead of the older 1.2 that is the latest stable version. Also, update jQuery 1.10.x mentions to 2.1.x.
1 parent 6b786dc commit e63f670

File tree

6 files changed

+24
-24
lines changed

6 files changed

+24
-24
lines changed

docs/content/error/$injector/modulerr.ngdoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ This error occurs when a module fails to load due to some exception. The error
77
message above should provide additional context.
88

99
In AngularJS `1.2.0` and later, `ngRoute` has been moved to its own module.
10-
If you are getting this error after upgrading to `1.2.x`, be sure that you've
10+
If you are getting this error after upgrading to `1.2.x` or later, be sure that you've
1111
installed {@link ngRoute `ngRoute`}.

docs/content/guide/animations.ngdoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# Animations
88

9-
AngularJS 1.2 provides animation hooks for common directives such as `ngRepeat`, `ngSwitch`, and `ngView`, as well as custom directives
9+
AngularJS 1.3 provides animation hooks for common directives such as `ngRepeat`, `ngSwitch`, and `ngView`, as well as custom directives
1010
via the `$animate` service. These animation hooks are set in place to trigger animations during the life cycle of various directives and when
1111
triggered, will attempt to perform a CSS Transition, CSS Keyframe Animation or a JavaScript callback Animation (depending on if an animation is
1212
placed on the given directive). Animations can be placed using vanilla CSS by following the naming conventions set in place by AngularJS

docs/content/tutorial/step_07.ngdoc

+6-6
Original file line numberDiff line numberDiff line change
@@ -33,17 +33,17 @@ We are using [Bower][bower] to install client side dependencies. This step upda
3333
"license": "MIT",
3434
"private": true,
3535
"dependencies": {
36-
"angular": "1.2.x",
37-
"angular-mocks": "~1.2.x",
38-
"jquery": "1.10.2",
36+
"angular": "~1.3.0",
37+
"angular-mocks": "~1.3.0",
38+
"jquery": "2.1.1",
3939
"bootstrap": "~3.1.1",
40-
"angular-route": "~1.2.x"
40+
"angular-route": "~1.3.0"
4141
}
4242
}
4343
```
4444

45-
The new dependency `"angular-route": "~1.2.x"` tells bower to install a version of the
46-
angular-route component that is compatible with version 1.2.x. We must tell bower to download
45+
The new dependency `"angular-route": "~1.3.0"` tells bower to install a version of the
46+
angular-route component that is compatible with version 1.3.x. We must tell bower to download
4747
and install this dependency.
4848

4949
If you have bower installed globally then you can run `bower install` but for this project we have

docs/content/tutorial/step_11.ngdoc

+6-6
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,17 @@ We are using [Bower][bower] to install client side dependencies. This step upda
3232
"license": "MIT",
3333
"private": true,
3434
"dependencies": {
35-
"angular": "1.2.x",
36-
"angular-mocks": "~1.2.x",
35+
"angular": "~1.3.0",
36+
"angular-mocks": "~1.3.0",
3737
"bootstrap": "~3.1.1",
38-
"angular-route": "~1.2.x",
39-
"angular-resource": "~1.2.x"
38+
"angular-route": "~1.3.0",
39+
"angular-resource": "~1.3.0"
4040
}
4141
}
4242
```
4343

44-
The new dependency `"angular-resource": "~1.2.x"` tells bower to install a version of the
45-
angular-resource component that is compatible with version 1.2.x. We must ask bower to download
44+
The new dependency `"angular-resource": "~1.3.0"` tells bower to install a version of the
45+
angular-resource component that is compatible with version 1.3.x. We must ask bower to download
4646
and install this dependency. We can do this by running:
4747

4848
```

docs/content/tutorial/step_12.ngdoc

+9-9
Original file line numberDiff line numberDiff line change
@@ -36,20 +36,20 @@ We are using [Bower][bower] to install client side dependencies. This step upda
3636
"license": "MIT",
3737
"private": true,
3838
"dependencies": {
39-
"angular": "1.2.x",
40-
"angular-mocks": "~1.2.x",
39+
"angular": "~1.3.0",
40+
"angular-mocks": "~1.3.0",
4141
"bootstrap": "~3.1.1",
42-
"angular-route": "~1.2.x",
43-
"angular-resource": "~1.2.x",
44-
"jquery": "1.10.2",
45-
"angular-animate": "~1.2.x"
42+
"angular-route": "~1.3.0",
43+
"angular-resource": "~1.3.0",
44+
"jquery": "~2.1.1",
45+
"angular-animate": "~1.3.0"
4646
}
4747
}
4848
```
4949

50-
* `"angular-animate": "~1.2.x"` tells bower to install a version of the
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
50+
* `"angular-animate": "~1.3.0"` tells bower to install a version of the
51+
angular-animate component that is compatible with version 1.3.x.
52+
* `"jquery": "2.1.1"` tells bower to install the 2.1.1 version of jQuery. Note that this is not an
5353
Angular library, it is the standard jQuery library. We can use bower to install a wide range of 3rd
5454
party libraries.
5555

src/ngAnimate/animate.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@
221221
*
222222
* ### CSS Staggering Animations
223223
* A Staggering animation is a collection of animations that are issued with a slight delay in between each successive operation resulting in a
224-
* curtain-like effect. The ngAnimate module, as of 1.2.0, supports staggering animations and the stagger effect can be
224+
* curtain-like effect. The ngAnimate module (versions >=1.2) supports staggering animations and the stagger effect can be
225225
* performed by creating a **ng-EVENT-stagger** CSS class and attaching that class to the base CSS class used for
226226
* the animation. The style property expected within the stagger class can either be a **transition-delay** or an
227227
* **animation-delay** property (or both if your animation contains both transitions and keyframe animations).

0 commit comments

Comments
 (0)