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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/auth_finder.tt (-1 / +1 lines)
Lines 13-19 Link Here
13
[% INCLUDE 'auth-finder-search.inc' %]
13
[% INCLUDE 'auth-finder-search.inc' %]
14
14
15
[% MACRO jsinclude BLOCK %]
15
[% MACRO jsinclude BLOCK %]
16
    <script type="text/javascript">
16
    <script>
17
        var index = "[% index | html %]";
17
        var index = "[% index | html %]";
18
        var authtypecode = "[% authtypecode | html %]";
18
        var authtypecode = "[% authtypecode | html %]";
19
    </script>
19
    </script>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/authorities.tt (-3 / +1 lines)
Lines 6-13 Link Here
6
[% Asset.js("lib/hc-sticky.js") | $raw %]
6
[% Asset.js("lib/hc-sticky.js") | $raw %]
7
[% Asset.js("js/cataloging.js") | $raw %]
7
[% Asset.js("js/cataloging.js") | $raw %]
8
8
9
<script type="text/javascript">
9
<script>
10
//<![CDATA[
11
    $(window).load(function(){
10
    $(window).load(function(){
12
        $("#loading").hide();
11
        $("#loading").hide();
13
    });
12
    });
Lines 157-163 function confirmnotdup(redirect){ Link Here
157
    $("#confirm_not_duplicate").attr("value","1");
156
    $("#confirm_not_duplicate").attr("value","1");
158
    Check();
157
    Check();
159
}
158
}
160
//]]>
161
</script>
159
</script>
162
[% Asset.css("css/addbiblio.css") | $raw %]
160
[% Asset.css("css/addbiblio.css") | $raw %]
163
161
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/blinddetail-biblio-search.tt (-1 / +1 lines)
Lines 16-22 Link Here
16
        </div>
16
        </div>
17
17
18
[% MACRO jsinclude BLOCK %]
18
[% MACRO jsinclude BLOCK %]
19
    <script type="text/javascript">
19
    <script>
20
        $(document).ready(function(){
20
        $(document).ready(function(){
21
            [% IF rancor %]
21
            [% IF rancor %]
22
            function RancorReplaceField( new_text, ind_1, ind_2 ){
22
            function RancorReplaceField( new_text, ind_1, ind_2 ){
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/detail.tt (-1 / +1 lines)
Lines 104-110 Link Here
104
    [% IF ( displayhierarchy ) %]
104
    [% IF ( displayhierarchy ) %]
105
        [% Asset.js("lib/jquery/plugins/jquery.jstree.js") | $raw %]
105
        [% Asset.js("lib/jquery/plugins/jquery.jstree.js") | $raw %]
106
    [% END %]
106
    [% END %]
107
    <script type="text/javascript">
107
    <script>
108
        $(document).ready(function() {
108
        $(document).ready(function() {
109
            $('#authoritiestabs').tabs();
109
            $('#authoritiestabs').tabs();
110
            [% IF ( displayhierarchy ) %]
110
            [% IF ( displayhierarchy ) %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/searchresultlist-auth.tt (-3 / +2 lines)
Lines 87-98 Link Here
87
    </div>
87
    </div>
88
88
89
[% MACRO jsinclude BLOCK %]
89
[% MACRO jsinclude BLOCK %]
90
    <script type="text/javascript">
90
    <script>
91
        var index = "[% index | html %]";
91
        var index = "[% index | html %]";
92
        var authtypecode = "[% authtypecode | html %]";
92
        var authtypecode = "[% authtypecode | html %]";
93
    </script>
93
    </script>
94
    [% Asset.js("js/auth-finder-search.js") | $raw %]
94
    [% Asset.js("js/auth-finder-search.js") | $raw %]
95
    <script type="text/javascript">
95
    <script>
96
96
97
        function jumpfull(page){
97
        function jumpfull(page){
98
            window.open(page,'','width=100,height=100,resizable=yes,toolbar=false,scrollbars=yes,top');
98
            window.open(page,'','width=100,height=100,resizable=yes,toolbar=false,scrollbars=yes,top');
99
- 

Return to bug 22979