From 61e5d5f47b318a0793b816db01106eb12d4da6e7 Mon Sep 17 00:00:00 2001 From: Atul Pratap Singh Date: Fri, 15 Jan 2016 10:04:23 +0530 Subject: [PATCH] Fix #11860 : TypeError: e.handler.apply is not a function Signed-off-by: Atul Pratap Singh --- js/tbl_zoom_plot_jqplot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/tbl_zoom_plot_jqplot.js b/js/tbl_zoom_plot_jqplot.js index 757275955f..33c5372508 100644 --- a/js/tbl_zoom_plot_jqplot.js +++ b/js/tbl_zoom_plot_jqplot.js @@ -128,7 +128,7 @@ AJAX.registerTeardown('tbl_zoom_plot_jqplot.js', function () { $('#tableid_3').unbind('change'); $('#inputFormSubmitId').unbind('click'); $('#togglesearchformlink').unbind('click'); - $(document).on('keydown', "#dataDisplay :input"); + $(document).off('keydown', "#dataDisplay :input"); $('button.button-reset').unbind('click'); $('div#resizer').unbind('resizestop'); $('div#querychart').unbind('jqplotDataClick');