mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 09:39:57 +00:00
16 lines
502 B
JavaScript
16 lines
502 B
JavaScript
$(".numberpicker-down-button").unbind('click').on("click", function ()
|
|
{
|
|
var inputElement = $(this).parent().parent().find('input[type="number"]')[0];
|
|
inputElement.stepDown();
|
|
$(inputElement).trigger('keyup');
|
|
$(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('keyup');
|
|
$(inputElement).trigger('change');
|
|
});
|