Merge branch 'master' into hal-serializer

This commit is contained in:
Art Lowel
2017-02-16 14:29:22 +01:00
10 changed files with 159 additions and 17 deletions

View File

@@ -2,16 +2,19 @@ import { NgModule, Optional, SkipSelf, ModuleWithProviders } from '@angular/core
import { CommonModule } from '@angular/common';
import { SharedModule } from "../shared/shared.module";
import { isNotEmpty } from "../shared/empty.util";
import { FooterComponent } from "./footer/footer.component";
const IMPORTS = [
CommonModule,
SharedModule
];
const DECLARATIONS = [
FooterComponent
];
const EXPORTS = [
FooterComponent
];
const PROVIDERS = [
@@ -33,7 +36,7 @@ export class CoreModule {
static forRoot(): ModuleWithProviders {
return {
ngModule: SharedModule,
ngModule: CoreModule,
providers: [
...PROVIDERS
]