node-click and node-dblclick DOM events (#1863)

Extra DOM events with bubbling support for DocumentList:
- node-click
- node-dblclick
This commit is contained in:
Denys Vuika
2017-05-10 11:12:05 +01:00
committed by Eugenio Romano
parent 5c7d53230d
commit 07d898b2aa
9 changed files with 91 additions and 10 deletions

View File

@@ -28,7 +28,7 @@ describe('ContentColumnList', () => {
beforeEach(() => {
let service = new DocumentListServiceMock();
documentList = new DocumentListComponent(service, null, null);
documentList = new DocumentListComponent(service, null, null, null);
columnList = new ContentColumnListComponent(documentList);
});

View File

@@ -27,7 +27,7 @@ describe('ContentColumn', () => {
beforeEach(() => {
let service = new DocumentListServiceMock();
documentList = new DocumentListComponent(service, null, null);
documentList = new DocumentListComponent(service, null, null, null);
columnList = new ContentColumnListComponent(documentList);
});