material removed, angular updated to b16

This commit is contained in:
nixa 2016-05-11 12:55:46 +03:00
parent f375f936d8
commit a1e49ecc9b
8 changed files with 55 additions and 123 deletions

View file

@ -11,11 +11,9 @@ import {FORM_PROVIDERS} from 'angular2/common';
// Angular 2 Http
import {HTTP_PROVIDERS} from 'angular2/http';
// Angular 2 Router
import {ROUTER_PROVIDERS, LocationStrategy, PathLocationStrategy} from 'angular2/router';
import {ROUTER_PROVIDERS} from 'angular2/router';
// Angular 2 Material
// TODO(gdi2290): replace with @angular2-material/all
import {MATERIAL_PROVIDERS} from './angular2-material2';
import {LocationStrategy, PathLocationStrategy} from 'angular2/platform/common'
/*
* Application Providers/Directives/Pipes
@ -24,7 +22,6 @@ import {MATERIAL_PROVIDERS} from './angular2-material2';
export const APPLICATION_PROVIDERS = [
...FORM_PROVIDERS,
...HTTP_PROVIDERS,
...MATERIAL_PROVIDERS,
...ROUTER_PROVIDERS,
provide(LocationStrategy, { useClass: PathLocationStrategy })
];