Lines 10-16
$(document).ready(function() {
Link Here
|
10 |
$('#selectlibrary').submit(); |
10 |
$('#selectlibrary').submit(); |
11 |
}); |
11 |
}); |
12 |
$(".editrule").click(function(){ |
12 |
$(".editrule").click(function(){ |
|
|
13 |
$('#default-circulation-rules td').removeClass('highlighted-row'); |
13 |
$(this).parent().parent().find("td").each(function (i) { |
14 |
$(this).parent().parent().find("td").each(function (i) { |
|
|
15 |
$(this).addClass('highlighted-row'); |
14 |
itm = $(this).text(); |
16 |
itm = $(this).text(); |
15 |
itm = itm.replace(/^\s*|\s*$/g,''); |
17 |
itm = itm.replace(/^\s*|\s*$/g,''); |
16 |
var current = $("#default-circulation-rules tr:last td:eq("+i+")"); |
18 |
var current = $("#default-circulation-rules tr:last td:eq("+i+")"); |
17 |
- |
|
|