Skip to content

Commit

Permalink
Fixed fn_parseValue function call
Browse files Browse the repository at this point in the history
settings context should be used when calling fn_parseValue
  • Loading branch information
prasad83 authored Apr 13, 2023
1 parent d3ef585 commit 16637e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/columnHeatmap.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@


if (typeof settings.fn_parseValue == "function") {
let value = fn_parseValue($(td).text());
let value = settings.fn_parseValue($(td).text());
if (typeof value == "undefined") {
throw 'None value returned in fn_parseValue';
} else {
Expand Down Expand Up @@ -111,4 +111,4 @@
return;
}
};
}(jQuery));
}(jQuery));

0 comments on commit 16637e9

Please sign in to comment.