mirror of
https://github.com/grocy/grocy.git
synced 2025-09-19 02:57:44 +00:00
14 lines
432 B
JavaScript
14 lines
432 B
JavaScript
![]() |
$(".numberpicker-down-button").unbind('click').on("click", function ()
|
||
|
{
|
||
|
var inputElement = $(this).parent().parent().find('input[type="number"]')[0];
|
||
|
inputElement.stepDown();
|
||
|
$(inputElement).trigger('change');
|
||
|
});
|
||
|
|
||
|
$(".numberpicker-up-button").unbind('click').on("click", function()
|
||
|
{
|
||
|
var inputElement = $(this).parent().parent().find('input[type="number"]')[0];
|
||
|
inputElement.stepUp();
|
||
|
$(inputElement).trigger('change');
|
||
|
});
|