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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/searchengine/elasticsearch/mappings.tt (-1 / +1 lines)
Lines 458-464 a.add, a.delete { Link Here
458
                            <h3>Facet order</h3>
458
                            <h3>Facet order</h3>
459
                            <div class="hint">Drag and drop rows to change the order</div>
459
                            <div class="hint">Drag and drop rows to change the order</div>
460
                            <div id="facet_[% index.index_name | html %]">
460
                            <div id="facet_[% index.index_name | html %]">
461
                                <table id="facetst">
461
                                <table id="facet_[% index.index_name | html %]_table" style="max-width: 50%; margin: 0;">
462
                                    <thead>
462
                                    <thead>
463
                                        <tr>
463
                                        <tr>
464
                                            <th>Order</th>
464
                                            <th>Order</th>
(-)a/koha-tmpl/intranet-tmpl/prog/js/elasticsearch-mappings.js (-2 / +1 lines)
Lines 79-85 $(document).ready(function () { Link Here
79
        }
79
        }
80
    });
80
    });
81
81
82
    $("#facetst").DataTable(
82
    $("#facet_biblios_table").DataTable(
83
        $.extend(true, {}, dataTablesDefaults, {
83
        $.extend(true, {}, dataTablesDefaults, {
84
            "columnDefs": [
84
            "columnDefs": [
85
                { "orderable": false, "searchable": false, 'targets': ['NoSort'] },
85
                { "orderable": false, "searchable": false, 'targets': ['NoSort'] },
86
- 

Return to bug 35249