File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change 4
4
* @installation
5
5
* ## Installation
6
6
*
7
- * Currently use `npm` to install the **Component Router** module:
7
+ * Currently, the **Component Router** module must be installed via `npm`, it is not yet available
8
+ * on Bower or the Google CDN.
8
9
*
9
10
* ```bash
10
11
* npm install @angular/router --save
15
16
* <script src="/node_modules/@angular/router/angular1/angular_1_router.js"></script>
16
17
*```
17
18
*
19
+ * You also need to include ES6 shims to support running on Internet Explorer:
20
+ * ```html
21
+ * <!-- IE required polyfills, in this exact order -->
22
+ * <script src="https://cdnjs.cloudflare.com/ajax/libs/es6-shim/0.33.3/es6-shim.min.js"></script>
23
+ * <script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.20/system-polyfills.js"></script>
24
+ * <script src="https://npmcdn.com/angular2/es6/dev/src/testing/shims_for_IE.js"></script>
25
+ * ```
26
+ *
18
27
* Then load the module in your application by adding it as a dependent module:
19
28
*
20
29
* ```js
You can’t perform that action at this time.
0 commit comments