Bug 29279: Use class for targets
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
This commit is contained in:
parent
8e1b1f3d15
commit
85f6781562
1 changed files with 4 additions and 4 deletions
|
@ -54,12 +54,12 @@
|
||||||
<th>Holds</th>
|
<th>Holds</th>
|
||||||
<th>Items</th>
|
<th>Items</th>
|
||||||
<th>Hold ratio</th>
|
<th>Hold ratio</th>
|
||||||
<th>Title</th>
|
<th class="anti-the">Title</th>
|
||||||
<th>Home libraries</th>
|
<th>Home libraries</th>
|
||||||
<th>Holding libraries</th>
|
<th>Holding libraries</th>
|
||||||
<th>Location</th>
|
<th>Location</th>
|
||||||
<th>Itype</th>
|
<th>Itype</th>
|
||||||
<th>Call numbers</th>
|
<th class="natural">Call numbers</th>
|
||||||
<th>Items needed</th>
|
<th>Items needed</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
|
@ -196,8 +196,8 @@
|
||||||
KohaTable("holdst", {
|
KohaTable("holdst", {
|
||||||
"aaSorting": [ [2,'desc'], [3,'asc'] ],
|
"aaSorting": [ [2,'desc'], [3,'asc'] ],
|
||||||
"aoColumnDefs": [
|
"aoColumnDefs": [
|
||||||
{ "aTargets": [ 8 ], "sType": "natural" },
|
{ "sType": "anti-the", "aTargets" : [ "anti-the" ] },
|
||||||
{ "aTargets": [ 3 ], "sType": "anti-the" },
|
{ "sType": "natural", "aTargets" : [ "natural" ] },
|
||||||
],
|
],
|
||||||
"sPaginationType": "full",
|
"sPaginationType": "full",
|
||||||
"autoWidth": false
|
"autoWidth": false
|
||||||
|
|
Loading…
Reference in a new issue