From cd91f432d1ec6a9060e3df1b756a0ebb2231398e Mon Sep 17 00:00:00 2001 From: "olau@iola.dk" Date: Mon, 14 Mar 2011 12:30:56 +0000 Subject: [PATCH] Remove getAxis function, nothing seems to use it and it is of dubious quality anyway after the setupGrid refactoring git-svn-id: https://flot.googlecode.com/svn/trunk@311 1e0a6537-2640-0410-bfb7-f154510ff394 --- jquery.flot.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/jquery.flot.js b/jquery.flot.js index 22573aa..5712e6b 100644 --- a/jquery.flot.js +++ b/jquery.flot.js @@ -167,12 +167,6 @@ return o; }; plot.getData = function () { return series; }; - plot.getAxis = function (dir, number) { - var a = (dir == "x" ? xaxes : yaxes)[number - 1]; - if (a && !a.used) - a = null; - return a; - }; plot.getAxes = function () { var res = {}, i; $.each(xaxes.concat(yaxes), function (_, axis) {