From 5ed2945c69801679cd9cff938a63493051c24f55 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 29 Jan 2020 10:31:33 +0100 Subject: [PATCH] Bug 23493: Remove commented lines Signed-off-by: Jonathan Druart --- koha-tmpl/intranet-tmpl/prog/js/checkouts.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js b/koha-tmpl/intranet-tmpl/prog/js/checkouts.js index 4cb3ddf89c..8e30932b2f 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js +++ b/koha-tmpl/intranet-tmpl/prog/js/checkouts.js @@ -607,10 +607,6 @@ $(document).ready(function() { } }, "fnInitComplete": function(oSettings, json) { - // Disable rowGrouping plugin after first use - // so any sorting on the table doesn't use it - //var oSettings = issuesTable.fnSettings(); - // Build a summary of checkouts grouped by itemtype var checkoutsByItype = json.aaData.reduce(function (obj, row) { obj[row.type_for_stat] = (obj[row.type_for_stat] || 0) + 1; -- 2.11.0