NIFI-4266 - Allow double-click to display Event

...details

Signed-off-by: Scott Aslan <scottyaslan@gmail.com>

This closes #2058
This commit is contained in:
yuri1969 2017-08-05 15:15:25 +02:00 committed by Scott Aslan
parent f8f1cc8d0d
commit 329b1caf82
1 changed files with 4 additions and 0 deletions

View File

@ -1011,6 +1011,10 @@
})
.on('mousedown', function (d) {
d3.event.stopPropagation();
})
.on('dblclick', function (d) {
// show the event details
provenanceTableCtrl.showEventDetails(d.id, clusterNodeId);
});
events