Skip to content

Commit

Permalink
fixed #1735
Browse files Browse the repository at this point in the history
  • Loading branch information
Mrtcndkn committed Jan 5, 2017
1 parent f1ace0e commit cd53d41
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions components/editor/editor.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {NgModule,Component,ElementRef,AfterViewInit,Input,Output,EventEmitter,ContentChild,OnChanges,forwardRef} from '@angular/core';
import {CommonModule} from '@angular/common';
import {Header} from '../common/shared'
import {SharedModule,Header} from '../common/shared'
import {DomHandler} from '../dom/domhandler';
import {NG_VALUE_ACCESSOR, ControlValueAccessor} from '@angular/forms';

Expand Down Expand Up @@ -159,7 +159,7 @@ export class Editor implements AfterViewInit,ControlValueAccessor {

@NgModule({
imports: [CommonModule],
exports: [Editor],
exports: [Editor,SharedModule],
declarations: [Editor]
})
export class EditorModule { }
3 changes: 2 additions & 1 deletion components/panel/panel.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import {NgModule,Component,Input,Output,EventEmitter,trigger,state,transition,style,animate,ElementRef} from '@angular/core';
import {CommonModule} from '@angular/common';
import {SharedModule} from '../common/shared'
import {BlockableUI} from '../common/api';

@Component({
Expand Down Expand Up @@ -96,7 +97,7 @@ export class Panel implements BlockableUI {

@NgModule({
imports: [CommonModule],
exports: [Panel],
exports: [Panel,SharedModule],
declarations: [Panel]
})
export class PanelModule { }

0 comments on commit cd53d41

Please sign in to comment.