@@ -36,20 +36,20 @@ We are using [Bower][bower] to install client side dependencies. This step upda
36
36
"license": "MIT",
37
37
"private": true,
38
38
"dependencies": {
39
- "angular": "~1.3.0",
40
- "angular-mocks": "~1.3.0",
41
- "bootstrap": "~3.1.1",
42
- "angular-route": "~1.3.0",
43
- "angular-resource": "~1.3.0",
39
+ "angular": "1.4.x",
40
+ "angular-mocks": "1.4.x",
44
41
"jquery": "~2.1.1",
45
- "angular-animate": "~1.3.0"
42
+ "bootstrap": "~3.1.1",
43
+ "angular-route": "1.4.x",
44
+ "angular-resource": "1.4.x",
45
+ "angular-animate": "1.4.x"
46
46
}
47
47
}
48
48
```
49
49
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
50
+ * `"angular-animate": "1.4.x "` tells bower to install a version of the
51
+ angular-animate component that is compatible with version 1.4 .x.
52
+ * `"jquery": "~ 2.1.1"` tells bower to install the 2.1.1 version of jQuery. Note that this is not an
53
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
@@ -111,7 +111,7 @@ __`app/index.html`.__
111
111
```
112
112
113
113
<div class="alert alert-error">
114
- **Important:** Be sure to use jQuery version 2.1 or newer when using Angular 1.3 ; jQuery 1.x is
114
+ **Important:** Be sure to use jQuery version 2.1 or newer when using Angular 1.4 ; jQuery 1.x is
115
115
not officially supported.
116
116
Be sure to load jQuery before all AngularJS scripts, otherwise AngularJS won't detect jQuery and
117
117
animations will not work as expected.
0 commit comments