This repository was archived by the owner on Dec 18, 2024. It is now read-only.
File tree 3 files changed +8
-3
lines changed
3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 4
4
< title > Angular Material Plunker</ title >
5
5
6
6
<!-- Load common libraries -->
7
- < script src ="https://cdnjs.cloudflare.com/ajax/libs/typescript/2.0.3 /typescript.min.js "> </ script >
7
+ < script src ="https://cdnjs.cloudflare.com/ajax/libs/typescript/2.1.1 /typescript.min.js "> </ script >
8
8
< script src ="https://cdnjs.cloudflare.com/ajax/libs/core-js/2.4.1/core.min.js "> </ script >
9
- < script src ="https://cdnjs.cloudflare.com/ajax/libs/zone.js/0.6.25 /zone.min.js "> </ script >
9
+ < script src ="https://cdnjs.cloudflare.com/ajax/libs/zone.js/0.8.5 /zone.min.js "> </ script >
10
10
< script src ="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.38/system.js "> </ script >
11
11
< script src ="https://cdnjs.cloudflare.com/ajax/libs/hammer.js/2.0.8/hammer.min.js "> </ script >
12
12
20
20
</ script >
21
21
22
22
<!-- Load the Angular Material stylesheet -->
23
- < link href ="https://unpkg.com/@angular/material/core/theming/ prebuilt/indigo-pink.css " rel ="stylesheet ">
23
+ < link href ="https://unpkg.com/@angular/material/prebuilt-themes /indigo-pink.css " rel ="stylesheet ">
24
24
< link href ="https://fonts.googleapis.com/icon?family=Material+Icons " rel ="stylesheet ">
25
25
< style > body { font-family : Roboto, Arial, sans-serif; }</ style >
26
26
</ head >
Original file line number Diff line number Diff line change 1
1
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic' ;
2
2
import { BrowserModule } from '@angular/platform-browser' ;
3
+ import { BrowserAnimationsModule } from '@angular/platform-browser/animations' ;
3
4
import { NgModule } from '@angular/core' ;
4
5
import { FormsModule , ReactiveFormsModule } from '@angular/forms' ;
5
6
import { MaterialModule } from '@angular/material' ;
@@ -9,6 +10,7 @@ import {MaterialDocsExample} from './material-docs-example';
9
10
10
11
imports : [
11
12
BrowserModule ,
13
+ BrowserAnimationsModule ,
12
14
FormsModule ,
13
15
ReactiveFormsModule ,
14
16
MaterialModule ,
Original file line number Diff line number Diff line change @@ -20,13 +20,16 @@ System.config({
20
20
21
21
// Angular specific mappings.
22
22
'@angular/core' : 'https://unpkg.com/@angular/core/bundles/core.umd.js' ,
23
+ '@angular/animations' : 'https://unpkg.com/@angular/animations/bundles/animations.umd.js' ,
23
24
'@angular/common' : 'https://unpkg.com/@angular/common/bundles/common.umd.js' ,
24
25
'@angular/compiler' : 'https://unpkg.com/@angular/compiler/bundles/compiler.umd.js' ,
25
26
'@angular/http' : 'https://unpkg.com/@angular/http/bundles/http.umd.js' ,
26
27
'@angular/forms' : 'https://unpkg.com/@angular/forms/bundles/forms.umd.js' ,
27
28
'@angular/router' : 'https://unpkg.com/@angular/router/bundles/router.umd.js' ,
28
29
'@angular/platform-browser' : 'https://unpkg.com/@angular/platform-browser/bundles/platform-browser.umd.js' ,
29
30
'@angular/platform-browser-dynamic' : 'https://unpkg.com/@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js' ,
31
+ '@angular/animations/browser' : 'https://unpkg.com/@angular/animations/bundles/animations-browser.umd.js' ,
32
+ '@angular/platform-browser/animations' : 'https://unpkg.com/@angular/platform-browser/bundles/platform-browser-animations.umd.js' ,
30
33
'@angular/material' : 'https://unpkg.com/@angular/material/bundles/material.umd.js' ,
31
34
32
35
// Rxjs mapping
You can’t perform that action at this time.
0 commit comments