Bug 23493: Remove commented lines
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Wed, 29 Jan 2020 09:31:33 +0000 (10:31 +0100)
committerMartin Renvoize <martin.renvoize@ptfs-europe.com>
Wed, 29 Jan 2020 16:12:44 +0000 (16:12 +0000)
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
koha-tmpl/intranet-tmpl/prog/js/checkouts.js

index 5698418..60ad01d 100644 (file)
@@ -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;