|
Lines 103-109
$(document).ready(function() {
Link Here
|
| 103 |
// Remove potential previous input added |
103 |
// Remove potential previous input added |
| 104 |
$(current_column).find("input").remove(); |
104 |
$(current_column).find("input").remove(); |
| 105 |
$(current_column).append("<input type='hidden' name='"+name+"' value='"+val+"' />"); |
105 |
$(current_column).append("<input type='hidden' name='"+name+"' value='"+val+"' />"); |
| 106 |
} else if ( i == 2 || i == 3 ) { |
106 |
} else if ( i == 3 || i == 4 ) { |
| 107 |
// If the value is not an integer for "Current checkouts allowed" or "Current on-site checkouts allowed" |
107 |
// If the value is not an integer for "Current checkouts allowed" or "Current on-site checkouts allowed" |
| 108 |
// The value is "Unlimited" (or an equivalent translated string) |
108 |
// The value is "Unlimited" (or an equivalent translated string) |
| 109 |
// an it should be set to an empty string |
109 |
// an it should be set to an empty string |
| 110 |
- |
|
|