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