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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-patron-search-results.inc (-12 lines)
Lines 1-16 Link Here
1
[% USE KohaDates %]
1
[% USE KohaDates %]
2
<script type="text/javascript">
3
    $(document).ready(function() {
4
        $(".clickable").click(function() {
5
            window.document.location = $(this).data('url');
6
        });
7
        var table = $("#table_borrowers").dataTable($.extend(true, {}, dataTablesDefaults, {
8
            "aaSorting": [ 0, "asc" ],
9
            "sDom": "t",
10
            "iDisplayLength": -1
11
        }));
12
    });
13
</script>
14
<legend>Patron selection</legend>
2
<legend>Patron selection</legend>
15
<table id="table_borrowers" class="table_borrowers">
3
<table id="table_borrowers" class="table_borrowers">
16
    <thead>
4
    <thead>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (+1 lines)
Lines 983-988 No patron matched <span class="ex">[% message | html %]</span> Link Here
983
    <script type="text/javascript" src="[% interface %]/[% theme %]/js/pages/circulation_[% KOHA_VERSION %].js"></script>
983
    <script type="text/javascript" src="[% interface %]/[% theme %]/js/pages/circulation_[% KOHA_VERSION %].js"></script>
984
    <script type="text/javascript" src="[% interface %]/[% theme %]/js/checkouts_[% KOHA_VERSION %].js"></script>
984
    <script type="text/javascript" src="[% interface %]/[% theme %]/js/checkouts_[% KOHA_VERSION %].js"></script>
985
    <script type="text/javascript" src="[% interface %]/[% theme %]/js/holds_[% KOHA_VERSION %].js"></script>
985
    <script type="text/javascript" src="[% interface %]/[% theme %]/js/holds_[% KOHA_VERSION %].js"></script>
986
    <script type="text/javascript" src="[% interface %]/[% theme %]/js/circ-patron-search-results_[% KOHA_VERSION %].js"></script>
986
    <script type="text/javascript">
987
    <script type="text/javascript">
987
        /* Set some variable needed in circulation.js */
988
        /* Set some variable needed in circulation.js */
988
        var MSG_DT_LOADING_RECORDS = _("Loading... you may continue scanning.");
989
        var MSG_DT_LOADING_RECORDS = _("Loading... you may continue scanning.");
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt (+1 lines)
Lines 13-18 Link Here
13
<link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/css/datatables_[% KOHA_VERSION %].css" />
13
<link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/css/datatables_[% KOHA_VERSION %].css" />
14
[% INCLUDE 'datatables.inc' %]
14
[% INCLUDE 'datatables.inc' %]
15
[% INCLUDE 'calendar.inc' %]
15
[% INCLUDE 'calendar.inc' %]
16
<script type="text/javascript" src="[% interface %]/[% theme %]/js/circ-patron-search-results_[% KOHA_VERSION %].js"></script>
16
<script type="text/javascript">
17
<script type="text/javascript">
17
    // <![CDATA[
18
    // <![CDATA[
18
var MSG_CONFIRM_DELETE_HOLD   = _("Are you sure you want to cancel this hold?");
19
var MSG_CONFIRM_DELETE_HOLD   = _("Are you sure you want to cancel this hold?");
(-)a/koha-tmpl/intranet-tmpl/prog/js/circ-patron-search-results.js (-1 / +11 lines)
Line 0 Link Here
0
- 
1
/* global dataTablesDefaults */
2
$(document).ready(function() {
3
    $(".clickable").click(function() {
4
        window.document.location = $(this).data('url');
5
    });
6
    var table = $("#table_borrowers").dataTable($.extend(true, {}, dataTablesDefaults, {
7
        "aaSorting": [ 0, "asc" ],
8
        "sDom": "t",
9
        "iDisplayLength": -1
10
    }));
11
});

Return to bug 20221