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

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@15373 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
mDeflotte
2012-05-18 13:54:10 +00:00
parent 6b9b80a097
commit 8983c48a83
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);