Merge pull request #536 from maoueh/feature/remove-alert-on-column-copy

Removes (annoying) `alert` on column copy value
This commit is contained in:
Dan Sosedoff
2021-12-08 09:33:27 -06:00
committed by GitHub

View File

@@ -950,7 +950,6 @@ function bindTableHeaderMenu() {
switch(menuItem.data("action")) { switch(menuItem.data("action")) {
case "copy_value": case "copy_value":
copyToClipboard($(context).text()); copyToClipboard($(context).text());
alert("Requested cell value has been copied to the clipboard!");
break; break;
case "filter_by_value": case "filter_by_value":
var colIdx = $(context).data("col"); var colIdx = $(context).data("col");