From 8d8ef8f97f2f642291ecc70cd7325436412e0e3f Mon Sep 17 00:00:00 2001 From: Jeremy Jones Date: Fri, 14 Dec 2018 08:12:06 -0600 Subject: [PATCH] remove check on axis.used in flot #13765 --- public/vendor/flot/jquery.flot.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/vendor/flot/jquery.flot.js b/public/vendor/flot/jquery.flot.js index 8e0d7a1420f..25507d63089 100644 --- a/public/vendor/flot/jquery.flot.js +++ b/public/vendor/flot/jquery.flot.js @@ -931,13 +931,13 @@ Licensed under the MIT license. var res = {}, i, axis; for (i = 0; i < xaxes.length; ++i) { axis = xaxes[i]; - if (axis && axis.used) + if (axis) res["x" + axis.n] = axis.c2p(pos.left); } for (i = 0; i < yaxes.length; ++i) { axis = yaxes[i]; - if (axis && axis.used) + if (axis) res["y" + axis.n] = axis.c2p(pos.top); }