Skip to content

Commit

Permalink
Replace var with const
Browse files Browse the repository at this point in the history
  • Loading branch information
campbell-m committed Aug 12, 2023
1 parent d24d053 commit d84929f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/js/datatables.js.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@
?>
var extractEmailAddresses = function(dt, columnSelector, sort) {
var result = [];
var scheme = 'mailto:';
var message;
const scheme = 'mailto:';

$.each(dt.columns(columnSelector).data(), function (i, column) {
$.each(column, function (j, value) {
Expand Down

0 comments on commit d84929f

Please sign in to comment.