From 8c325eb1b133f17d582ca3b983307f97e7b143ee Mon Sep 17 00:00:00 2001 From: Charles Hacskaylo Date: Wed, 13 Jan 2016 10:11:14 -0800 Subject: [PATCH] [Frontend] Mods to allow plot tick labels to ellipsis to left open #337 Still fixing code due to circleci fail in pull request; --- platform/features/plot/src/elements/PlotTickGenerator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/features/plot/src/elements/PlotTickGenerator.js b/platform/features/plot/src/elements/PlotTickGenerator.js index 7155c103af..d916e8cf36 100644 --- a/platform/features/plot/src/elements/PlotTickGenerator.js +++ b/platform/features/plot/src/elements/PlotTickGenerator.js @@ -62,7 +62,7 @@ define( for (i = 0; i < count; i += 1) { tickVal = format(i * step + start); - if (tickVal != undefined) { + if (tickVal !== undefined) { // Make the tick value have its ellipsis on the least significant left side by reversing it here, // and then reversing it again via CSS. tickVal = tickVal.toString().split('').reverse().join('');