@@ -16,14 +16,14 @@ development.
16
16
production.
17
17
18
18
To point your code to an angular script on the angular server, use the following template. This
19
- example points to (non-minified) version 0.10.6 :
19
+ example points to (non-minified) version 1.0.2 :
20
20
21
21
<pre>
22
22
<!doctype html>
23
23
<html ng-app>
24
24
<head>
25
25
<title>My Angular App</title>
26
- <script src="http://code.angularjs.org/angular-0.10.6 .js"></script>
26
+ <script src="http://code.angularjs.org/1.0.2/angular .js"></script>
27
27
</head>
28
28
<body>
29
29
</body>
@@ -42,29 +42,31 @@ Download the version you want and have fun.
42
42
43
43
Each directory under <http://code.angularjs.org/> includes the following set of files:
44
44
45
- * __`angular-<version> .js`__ — This file is non-obfuscated, non-minified, and human-readable by
45
+ * __`angular.js`__ — This file is non-obfuscated, non-minified, and human-readable by
46
46
opening it it any editor or browser. In order to get better error messages during development, you
47
47
should always use this non-minified angular script.
48
48
49
- * __`angular-<version> .min.js`__ — This is a minified and obfuscated version of
50
- `angular-<version> .js` created with the Closure compiler. Use this version for production in order
49
+ * __`angular.min.js`__ — This is a minified and obfuscated version of
50
+ `angular.js` created with the Closure compiler. Use this version for production in order
51
51
to minimize the size of the application that is downloaded by your user's browser.
52
52
53
- * __`angular-<version>.tgz `__ — This is a tarball archive that contains all of the files released
53
+ * __`angular.zip `__ — This is a zip archive that contains all of the files released
54
54
for this angular version. Use this file to get everything in a single download.
55
55
56
- * __`angular-ie-compat-<version>.js`__ — This is a special file that contains code and data
57
- specifically tailored for getting Internet Explorer to work with angular. If you host your own copy
58
- of angular files, make sure that this file is available for download, and that it resides under the
59
- same parent path as `angular-<version>.js` or `angular-<version>.min.js`.
60
-
61
- * __`angular-mocks-<version>.js`__ — This file contains an implementation of mocks that makes
56
+ * __`angular-mocks.js`__ — This file contains an implementation of mocks that makes
62
57
testing angular apps even easier. Your unit/integration test harness should load this file after
63
58
`angular-<version>.js` is loaded.
64
59
65
- * __`angular-scenario-<version> .js`__ — This file is a very nifty JavaScript file that allows you
60
+ * __`angular-scenario.js`__ — This file is a very nifty JavaScript file that allows you
66
61
to write and execute end-to-end tests for angular applications.
67
62
68
- * __`docs-<version>`__ — this directory contains all the files that compose the
63
+ * __`angular-loader.min.js`__ — Module loader for Angular modules. If you are loading multiple script files containing
64
+ Angular modules, you can load them asynchronosuly and in any order as long as you load this file first. Often the
65
+ contents of this file are copy&pasted into the `index.html` to avoid even the inial request to `angular-loader.min.js`.
66
+ See [angular-seed](https://github.com/angular/angular-seed/blob/master/app/index-async.html) for an example of usage.
67
+
68
+ * __`angular-resource.js`__, __`angular-cookies.js`__, etc - extra Angular modules with additional functionality.
69
+
70
+ * __`docs`__ — this directory contains all the files that compose the
69
71
<http://docs.angularjs.org/> documentation app. These files are handy to see the older version of
70
72
our docs, or even more importantly, view the docs offline.
0 commit comments