forked from DGNum/gestioCOF
Remove limit for purchases
This commit is contained in:
parent
e36e88e77a
commit
b48d32f4bc
1 changed files with 1 additions and 1 deletions
|
@ -713,7 +713,7 @@ $(document).ready(function() {
|
||||||
});
|
});
|
||||||
|
|
||||||
function is_nb_ok(nb) {
|
function is_nb_ok(nb) {
|
||||||
return /^[0-9]+$/.test(nb) && nb > 0 && nb <= 24;
|
return /^[0-9]+$/.test(nb) && nb > 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
articleNb.on('keydown', function(e) {
|
articleNb.on('keydown', function(e) {
|
||||||
|
|
Loading…
Reference in a new issue