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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-account.tt (-4 / +7 lines)
Lines 71-77 Link Here
71
                            <thead>
71
                            <thead>
72
                                <tr>
72
                                <tr>
73
                                    [% IF ENABLE_OPAC_PAYMENTS %]<th>&nbsp;</th>[% END %]
73
                                    [% IF ENABLE_OPAC_PAYMENTS %]<th>&nbsp;</th>[% END %]
74
                                    <th>Date</th>
74
                                    <th class="title-string">Date</th>
75
                                    <th>Description</th>
75
                                    <th>Description</th>
76
                                    <th>Fine amount</th>
76
                                    <th>Fine amount</th>
77
                                    <th>Amount outstanding</th>
77
                                    <th>Amount outstanding</th>
Lines 102-108 Link Here
102
                                                [% END %]
102
                                                [% END %]
103
                                            </td>
103
                                            </td>
104
                                        [% END %]
104
                                        [% END %]
105
                                        <td>[% ACCOUNT_LINE.date | $KohaDates %]</td>
105
                                        <td><span title="[% ACCOUNT_LINE.date %]">[% ACCOUNT_LINE.date | $KohaDates %]</span></td>
106
                                        <td>
106
                                        <td>
107
                                            [% SWITCH ACCOUNT_LINE.accounttype %]
107
                                            [% SWITCH ACCOUNT_LINE.accounttype %]
108
                                            [% CASE 'Pay' %]Payment, thanks
108
                                            [% CASE 'Pay' %]Payment, thanks
Lines 186-192 Link Here
186
<script type="text/javascript">
186
<script type="text/javascript">
187
$( document ).ready(function() {
187
$( document ).ready(function() {
188
188
189
    $("#finestable").dataTable($.extend(true, {}, dataTablesDefaults ));
189
    $("#finestable").dataTable($.extend(true, {}, dataTablesDefaults, {
190
        "aoColumnDefs": [
191
             { "sType": "title-string", "aTargets" : [ "title-string" ] }
192
         ]
193
    } ));
190
194
191
    $(".paypal").on("click", function() {
195
    $(".paypal").on("click", function() {
192
        window.open('https://www.paypal.com/webapps/mpp/paypal-popup','WIPaypal','toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, width=1060, height=700');
196
        window.open('https://www.paypal.com/webapps/mpp/paypal-popup','WIPaypal','toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, width=1060, height=700');
193
- 

Return to bug 19338