Merge branch 'Aufinal/remove_24' into 'master'
Remove limit for purchases Closes #289 See merge request klub-dev-ens/gestioCOF!498
This commit is contained in:
commit
2befa584aa
1 changed files with 1 additions and 1 deletions
|
@ -713,7 +713,7 @@ $(document).ready(function() {
|
|||
});
|
||||
|
||||
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) {
|
||||
|
|
Loading…
Reference in a new issue