Commit 55c42ae0 authored by dmacfarlane's avatar dmacfarlane
Browse files

Fixed access modifier

parent 979add45
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -24,7 +24,7 @@ declare var tinymce: any;
export class DemoTinymceComponent {
export class DemoTinymceComponent {
  @Input() htmlContent;
  @Input() htmlContent;
  @ViewChild(MentionDirective) mention: MentionDirective;
  @ViewChild(MentionDirective) mention: MentionDirective;
  protected items:string[] = COMMON_NAMES;
  public items:string[] = COMMON_NAMES;
  constructor(private _elementRef: ElementRef, private _zone: NgZone) {}
  constructor(private _elementRef: ElementRef, private _zone: NgZone) {}
  ngAfterViewInit() {
  ngAfterViewInit() {
    tinymce.init({
    tinymce.init({