View | Details | Raw Unified | Return to bug 29648
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/member.tt (-3 / +1 lines)
Lines 244-250 Link Here
244
            $("#searchheader").hide();
244
            $("#searchheader").hide();
245
            $("#patron_search_form").on('submit', function(){$("#searchheader").show();});
245
            $("#patron_search_form").on('submit', function(){$("#searchheader").show();});
246
            $("#clear_search").on("click",function(e){$("#searchheader").hide();});
246
            $("#clear_search").on("click",function(e){$("#searchheader").hide();});
247
248
        });
247
        });
249
248
250
        function patronListAdd(){
249
        function patronListAdd(){
Lines 294-300 Link Here
294
        var table_settings = [% TablesSettings.GetColumns( 'members', 'member', 'memberresultst', 'json' ) | $raw %];
293
        var table_settings = [% TablesSettings.GetColumns( 'members', 'member', 'memberresultst', 'json' ) | $raw %];
295
        [% UNLESS CAN_user_borrowers_edit_borrowers OR CAN_user_tools_manage_patron_lists %]
294
        [% UNLESS CAN_user_borrowers_edit_borrowers OR CAN_user_tools_manage_patron_lists %]
296
            [%# Remove the first column if we do not display the checkbox %]
295
            [%# Remove the first column if we do not display the checkbox %]
297
            table_settings.splice(0, 1);
296
            table_settings['columns'].splice(0, 1);
298
        [% END %]
297
        [% END %]
299
    </script>
298
    </script>
300
299
301
- 

Return to bug 29648