This repository was archived by the owner on Dec 18, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 44 < title > Angular Material Plunker</ title >
55
66 <!-- 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 >
88 < 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 >
1010 < script src ="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.38/system.js "> </ script >
1111 < script src ="https://cdnjs.cloudflare.com/ajax/libs/hammer.js/2.0.8/hammer.min.js "> </ script >
1212
2020 </ script >
2121
2222 <!-- 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 ">
2424 < link href ="https://fonts.googleapis.com/icon?family=Material+Icons " rel ="stylesheet ">
2525 < style > body { font-family : Roboto, Arial, sans-serif; }</ style >
2626</ head >
Original file line number Diff line number Diff line change 11import { platformBrowserDynamic } from '@angular/platform-browser-dynamic' ;
22import { BrowserModule } from '@angular/platform-browser' ;
3+ import { BrowserAnimationsModule } from '@angular/platform-browser/animations' ;
34import { NgModule } from '@angular/core' ;
45import { FormsModule , ReactiveFormsModule } from '@angular/forms' ;
56import { MaterialModule } from '@angular/material' ;
@@ -9,6 +10,7 @@ import {MaterialDocsExample} from './material-docs-example';
910
1011 imports : [
1112 BrowserModule ,
13+ BrowserAnimationsModule ,
1214 FormsModule ,
1315 ReactiveFormsModule ,
1416 MaterialModule ,
Original file line number Diff line number Diff line change @@ -20,13 +20,16 @@ System.config({
2020
2121 // Angular specific mappings.
2222 '@angular/core' : 'https://unpkg.com/@angular/core/bundles/core.umd.js' ,
23+ '@angular/animations' : 'https://unpkg.com/@angular/animations/bundles/animations.umd.js' ,
2324 '@angular/common' : 'https://unpkg.com/@angular/common/bundles/common.umd.js' ,
2425 '@angular/compiler' : 'https://unpkg.com/@angular/compiler/bundles/compiler.umd.js' ,
2526 '@angular/http' : 'https://unpkg.com/@angular/http/bundles/http.umd.js' ,
2627 '@angular/forms' : 'https://unpkg.com/@angular/forms/bundles/forms.umd.js' ,
2728 '@angular/router' : 'https://unpkg.com/@angular/router/bundles/router.umd.js' ,
2829 '@angular/platform-browser' : 'https://unpkg.com/@angular/platform-browser/bundles/platform-browser.umd.js' ,
2930 '@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' ,
3033 '@angular/material' : 'https://unpkg.com/@angular/material/bundles/material.umd.js' ,
3134
3235 // Rxjs mapping
You can’t perform that action at this time.
0 commit comments