Skip to content

Commit

Permalink
fix(material): use browser animations
Browse files Browse the repository at this point in the history
  • Loading branch information
joaogarin committed Apr 24, 2017
1 parent f535378 commit 6bbcd1d
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 295 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
},
"homepage": "",
"dependencies": {
"@angular/animations": "^4.0.3",
"@angular/common": "^4.0.0",
"@angular/compiler": "^4.0.0",
"@angular/core": "^4.0.0",
Expand Down Expand Up @@ -70,8 +71,8 @@
"karma-coverage": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-mocha-reporter": "^2.0.0",
"karma-remap-coverage": "^0.1.4",
"karma-phantomjs-launcher": "^1.0.0",
"karma-remap-coverage": "^0.1.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "2.0.2",
"node-sass": "^4.0.0",
Expand Down
3 changes: 3 additions & 0 deletions src/app/app.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
/*
* Angular Modules
*/
Expand All @@ -9,6 +10,7 @@ import { RouterModule, Router } from '@angular/router';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { HttpModule } from '@angular/http';


// Setup redux with ngrx
import { Store, StoreModule } from '@ngrx/store';
import { authStore, authInitialState } from './store/auth.store';
Expand Down Expand Up @@ -41,6 +43,7 @@ import { Authentication } from './services/authentication';
FormsModule,
ReactiveFormsModule,
HttpModule,
BrowserAnimationsModule,
MaterialModule.forRoot(),
RouterModule.forRoot(routes, { useHash: true }),
StoreModule.provideStore({ authStore }, { authStore: authInitialState }),
Expand Down
Loading

0 comments on commit 6bbcd1d

Please sign in to comment.