private accessors replaced by protected to allow extending of classes

This commit is contained in:
Daniel Kucal
2016-10-26 01:02:28 +02:00
parent 34c0d35c9c
commit a2286f0fa8
3 changed files with 24 additions and 24 deletions

View File

@@ -8,7 +8,7 @@ import { FileUploader } from './file-uploader.class';
export class FileSelectDirective {
@Input() public uploader:FileUploader;
private element:ElementRef;
protected element:ElementRef;
public constructor(element:ElementRef) {
this.element = element;