5 lines
102 B
JavaScript
5 lines
102 B
JavaScript
|
// License: LGPL-3.0-or-later
|
||
|
jQuery(function($){
|
||
|
jQuery("input[name='amount']").attr("min",3);
|
||
|
});
|