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

(-)a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js (-4 / +2 lines)
Lines 154-160 $(document).ready(function() { Link Here
154
        if ( refresh_table ) {
154
        if ( refresh_table ) {
155
            RefreshIssuesTable();
155
            RefreshIssuesTable();
156
        }
156
        }
157
157
        $('#RenewChecked, #CheckinChecked').prop('disabled' , true );
158
        // Prevent form submit
158
        // Prevent form submit
159
        return false;
159
        return false;
160
    });
160
    });
Lines 247-253 $(document).ready(function() { Link Here
247
        if ( refresh_table ) {
247
        if ( refresh_table ) {
248
            RefreshIssuesTable();
248
            RefreshIssuesTable();
249
        }
249
        }
250
250
        $('#RenewChecked, #CheckinChecked').prop('disabled' , true );
251
        // Prevent form submit
251
        // Prevent form submit
252
        return false;
252
        return false;
253
    });
253
    });
Lines 302-308 $(document).ready(function() { Link Here
302
        $('#issues-table-loading-message').hide();
302
        $('#issues-table-loading-message').hide();
303
        $('#issues-table').show();
303
        $('#issues-table').show();
304
        $('#issues-table-actions').show();
304
        $('#issues-table-actions').show();
305
306
        var msg_loading = __('Loading... you may continue scanning.');
305
        var msg_loading = __('Loading... you may continue scanning.');
307
        issuesTable = KohaTable("issues-table", {
306
        issuesTable = KohaTable("issues-table", {
308
            "oLanguage": {
307
            "oLanguage": {
309
- 

Return to bug 35068