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