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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt (-10 / +2 lines)
Lines 105-117 function confirm_deletion(biblionumber,itemnumber) { Link Here
105
	$("#row"+itemnumber).attr("class","");
105
	$("#row"+itemnumber).attr("class","");
106
    }
106
    }
107
}
107
}
108
109
$(document).ready(function() {
110
    $("#cataloguing_additem_itemlist  tr").hover(
111
        function () {$(this).addClass("highlight");},
112
        function () {$(this).removeClass("highlight");}
113
    );
114
});
115
//]]>
108
//]]>
116
</script>
109
</script>
117
<link type="text/css" rel="stylesheet" href="[% themelang %]/css/addbiblio.css" />
110
<link type="text/css" rel="stylesheet" href="[% themelang %]/css/addbiblio.css" />
Lines 162-170 $(document).ready(function() { Link Here
162
                [% FOREACH item_loo IN item_loop %]
155
                [% FOREACH item_loo IN item_loop %]
163
                    [% IF ( item_loo.itemnumber == itemnumber) %]
156
                    [% IF ( item_loo.itemnumber == itemnumber) %]
164
                        [% IF item_loo.nomod %]
157
                        [% IF item_loo.nomod %]
165
                           <tr id="row[% item_loo.itemnumber %]" class="active">
158
                           <tr id="row[% item_loo.itemnumber %]" class="active highlight">
166
                        [% ELSE %]
159
                        [% ELSE %]
167
                            <tr id="row[% item_loo.itemnumber %]" class="active editable">
160
                            <tr id="row[% item_loo.itemnumber %]" class="active editable highlight">
168
                        [% END %]
161
                        [% END %]
169
                    [% ELSE %]
162
                    [% ELSE %]
170
                        [% IF item_loo.nomod %]
163
                        [% IF item_loo.nomod %]
171
- 

Return to bug 14276