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

(-)a/koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js (-15 / +12 lines)
Lines 313-322 $(document).ready(function() { Link Here
313
        }
313
        }
314
    );
314
    );
315
315
316
    $("#issues-table_processing").position({
316
    if ( $("#issues-table").length ) {
317
        of: $( "#issues-table" ),
317
        $("#issues-table_processing").position({
318
        collision: "none"
318
            of: $( "#issues-table" ),
319
    });
319
            collision: "none"
320
        });
321
    }
320
322
321
    // Don't load relatives' issues table unless it is clicked on
323
    // Don't load relatives' issues table unless it is clicked on
322
    var relativesIssuesTable;
324
    var relativesIssuesTable;
Lines 406-422 $(document).ready(function() { Link Here
406
        }
408
        }
407
    });
409
    });
408
410
409
    $("#relatives-issues-table_processing").position({
411
    if ( $("#relatives-issues-table").length ) { 
410
        of: $( "#relatives-issues-table" ),
412
        $("#relatives-issues-table_processing").position({
411
        collision: "none"
413
            of: $( "#relatives-issues-table" ),
412
    });
414
            collision: "none"
413
415
        });
414
    $("#issues-table").on("sort",function() {
416
    }
415
        $("#previous").hide();  // Don't want to see "previous checkouts" header sorted with other rows
416
    });
417
    $("#relatives-issues-table").on("sort",function() {
418
        $("#relprevious").hide();  // Don't want to see "previous checkouts" header sorted with other rows
419
    });
420
417
421
    if ( AllowRenewalLimitOverride ) {
418
    if ( AllowRenewalLimitOverride ) {
422
        $( '#override_limit' ).click( function () {
419
        $( '#override_limit' ).click( function () {
(-)a/koha-tmpl/intranet-tmpl/prog/en/js/holds.js (-5 / +6 lines)
Lines 121-130 $(document).ready(function() { Link Here
121
                },
121
                },
122
            });
122
            });
123
123
124
            $("#holds-table_processing").position({
124
            if ( $("#holds-table").length ) {
125
                of: $( "#holds-table" ),
125
                $("#holds-table_processing").position({
126
                collision: "none"
126
                    of: $( "#holds-table" ),
127
            });
127
                    collision: "none"
128
                });
129
            }
128
        }
130
        }
129
    });
131
    });
130
132
131
- 

Return to bug 11703