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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/detail.tt (-1 / +1 lines)
Lines 153-159 Link Here
153
                    "plugins" : [ "types" ]
153
                    "plugins" : [ "types" ]
154
                }).on('ready.jstree', function(){
154
                }).on('ready.jstree', function(){
155
                    $(this).jstree('open_all');
155
                    $(this).jstree('open_all');
156
                    $("#hier"+[% authid %]+"_anchor").on("click",
156
                    $("#hier"+[% authid | html %]+"_anchor").on("click",
157
                        function(e){e.preventDefault(); return false;}
157
                        function(e){e.preventDefault(); return false;}
158
                    ).css("text-decoration", "none").css("color", "#333");
158
                    ).css("text-decoration", "none").css("color", "#333");
159
                    $(".currentauth").css("text-decoration", "none").css("color", "#333");
159
                    $(".currentauth").css("text-decoration", "none").css("color", "#333");
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth-MARCdetail.tt (-1 / +1 lines)
Lines 93-99 Link Here
93
                    "plugins" : [ "types" ]
93
                    "plugins" : [ "types" ]
94
                }).on('ready.jstree', function(){
94
                }).on('ready.jstree', function(){
95
                    $(this).jstree('open_all')
95
                    $(this).jstree('open_all')
96
                    $("#hier"+[% authid %]+"_anchor").on("click",
96
                    $("#hier"+[% authid | html %]+"_anchor").on("click",
97
                        function(e){e.preventDefault(); return false;}
97
                        function(e){e.preventDefault(); return false;}
98
                    ).css("text-decoration", "none").css("color", "#333");
98
                    ).css("text-decoration", "none").css("color", "#333");
99
                    $(".currentauth").css("text-decoration", "none").css("color", "#333");
99
                    $(".currentauth").css("text-decoration", "none").css("color", "#333");
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth-detail.tt (-2 / +1 lines)
Lines 188-194 Link Here
188
                "plugins" : [ "types" ]
188
                "plugins" : [ "types" ]
189
            }).on('ready.jstree', function(){
189
            }).on('ready.jstree', function(){
190
                $(this).jstree('open_all');
190
                $(this).jstree('open_all');
191
                $("#hier"+[% original_authid %]+"_anchor").on("click",
191
                $("#hier"+[% original_authid | html %]+"_anchor").on("click",
192
                    function(e){e.preventDefault(); return false;}
192
                    function(e){e.preventDefault(); return false;}
193
                ).css("text-decoration", "none").css("color", "#333");
193
                ).css("text-decoration", "none").css("color", "#333");
194
                $(".currentauth").css("text-decoration", "none").css("color", "#333");
194
                $(".currentauth").css("text-decoration", "none").css("color", "#333");
195
- 

Return to bug 11873