From b48e48e100013b5a5c5c9cbf5ebb7599c662f7ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Zrim=C5=A1ek?= Date: Tue, 24 Jan 2017 10:56:10 +0100 Subject: [PATCH] Prevent sample row in samples datatable from toggling when clicking on smart annotation link. [SCI-913] --- app/assets/javascripts/samples/sample_datatable.js.erb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/assets/javascripts/samples/sample_datatable.js.erb b/app/assets/javascripts/samples/sample_datatable.js.erb index be14fa143..fc9847926 100644 --- a/app/assets/javascripts/samples/sample_datatable.js.erb +++ b/app/assets/javascripts/samples/sample_datatable.js.erb @@ -215,6 +215,8 @@ function dataTableInit() { // Handle table draw event table.on('draw', function() { updateDataTableSelectAllCtrl(table); + // Prevent sample row toggling when selecting user smart annotation link + SmartAnnotation.preventPropagation('.atwho-user-popover'); }); return table;