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

(-)a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js (-3 / +7 lines)
Lines 1010-1017 $(document).ready(function() { Link Here
1010
                    {
1010
                    {
1011
                        "sClass": "return-claim-notes-td",
1011
                        "sClass": "return-claim-notes-td",
1012
                        "mDataProp": function ( oObj ) {
1012
                        "mDataProp": function ( oObj ) {
1013
                            return '<span id="return-claim-notes-static-' + oObj.id + '" class="return-claim-notes" data-return-claim-id="' + oObj.id + '">' + oObj.notes + '</span>'
1013
                            let notes =  '<span id="return-claim-notes-static-' + oObj.id + '" class="return-claim-notes" data-return-claim-id="' + oObj.id + '">';
1014
                                + '<i style="float:right" class="fa fa-pencil-square-o" title="' + __("Double click to edit") + '"></i>';
1014
                            if ( oObj.notes ) {
1015
                                notes += oObj.notes;
1016
                            }
1017
                            notes += '</span>';
1018
                            notes += '<i style="float:right" class="fa fa-pencil-square-o" title="' + __("Double click to edit") + '"></i>';
1019
                            return notes;
1015
                        }
1020
                        }
1016
                    },
1021
                    },
1017
                    {
1022
                    {
1018
- 

Return to bug 31087