Skip to content

Commit

Permalink
Refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
Çağatay Çivici committed Jun 30, 2017
1 parent ba081f0 commit 5ea4aa8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/components/treetable/treetable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export class UITreeRow implements OnInit {
}

rowDblClick(event: MouseEvent) {
this.treeTable.onRowDblClick.emit({originalEvent: event, node: this.node});
this.treeTable.onRowDblclick.emit({originalEvent: event, node: this.node});
}

onRowTouchEnd() {
Expand Down Expand Up @@ -168,7 +168,7 @@ export class TreeTable implements AfterContentInit {

@Input() toggleColumnIndex: number = 0;

@Output() onRowDblClick: EventEmitter<any> = new EventEmitter();
@Output() onRowDblclick: EventEmitter<any> = new EventEmitter();

@Output() selectionChange: EventEmitter<any> = new EventEmitter();

Expand Down

0 comments on commit 5ea4aa8

Please sign in to comment.