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

(-)a/koha-tmpl/intranet-tmpl/prog/en/js/datatables.js (-2 / +2 lines)
Lines 562-568 jQuery.fn.dataTableExt.oSort['callnumbers-asc'] = function(x,y) { Link Here
562
        y = y_array.shift();
562
        y = y_array.shift();
563
563
564
        if ( !x ) { x = ""; }
564
        if ( !x ) { x = ""; }
565
        if ( !y ) { y = ""; } 
565
        if ( !y ) { y = ""; }
566
566
567
        return ((x < y) ? -1 : ((x > y) ?  1 : 0));
567
        return ((x < y) ? -1 : ((x > y) ?  1 : 0));
568
};
568
};
Lines 589-595 jQuery.fn.dataTableExt.oSort['callnumbers-desc'] = function(x,y) { Link Here
589
        y = y_array.pop();
589
        y = y_array.pop();
590
590
591
        if ( !x ) { x = ""; }
591
        if ( !x ) { x = ""; }
592
        if ( !y ) { y = ""; } 
592
        if ( !y ) { y = ""; }
593
593
594
        return ((x < y) ?  1 : ((x > y) ? -1 : 0));
594
        return ((x < y) ?  1 : ((x > y) ? -1 : 0));
595
};
595
};
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/basket/basket.tt (-2 / +1 lines)
Lines 13-19 Link Here
13
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" />
13
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" />
14
<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.dataTables.min.js"></script>
14
<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.dataTables.min.js"></script>
15
[% INCLUDE 'datatables-strings.inc' %]
15
[% INCLUDE 'datatables-strings.inc' %]
16
<script type="text/javascript" src="[% themelang %]/js/datatables.js"></script>	<script type="text/javascript">
16
<script type="text/javascript" src="[% themelang %]/js/datatables.js"></script><script type="text/javascript">
17
	//<![CDATA[
17
	//<![CDATA[
18
18
19
function placeHold () {
19
function placeHold () {
20
- 

Return to bug 9456