[-] MO : #PSCFV-2354 - Remove chars number limit of version number

This commit is contained in:
mDeflotte
2012-05-18 13:54:10 +00:00
parent 6f52c41dd1
commit 76fd39ba23
3 changed files with 5 additions and 6 deletions
+2 -2
View File
@@ -44,9 +44,9 @@ function addVariation(id_variation)
}
newRow += '</select></td>';
newRow += '<td style="font-weight: bold;">'+compafrom+'</td>';
newRow += '<td><input type="text" value="'+compatibility_from+'" name="compafrom_'+idRow+'" maxlength="'+compatibility_length+'" /></td>';
newRow += '<td><input type="text" value="'+compatibility_from+'" name="compafrom_'+idRow+'"/></td>';
newRow += '<td style="font-weight: bold;">'+compato+'</td>';
newRow += '<td><input type="text" value="'+compatibility_to+'" name="compato_'+idRow+'" maxlength="'+compatibility_length+'" /></td>';
newRow += '<td><input type="text" value="'+compatibility_to+'" name="compato_'+idRow+'"/></td>';
if ($('#variation_table tr').length > 0)
$('#variation_table tr:last').after(newRow);