diff -r 7776b3c68c46 -r dc22dd5d77fd www/js/inv_yeasts.js --- a/www/js/inv_yeasts.js Thu Feb 14 16:28:37 2019 +0100 +++ b/www/js/inv_yeasts.js Mon Feb 18 22:07:12 2019 +0100 @@ -52,18 +52,18 @@ if (dataRecord.form == 0) { // Liquid $("#pmpt_cost").html('Prijs per pak:'); $("#pmpt_inventory").html('Voorraad pak(ken):'); - $("#pmpt_cells").html('Biljoen cellen per pak:'); - $("#inventory").jqxNumberInput({ decimalDigits: 0, spinButtonsStep: 1 }); + $("#pmpt_cells").html('Miljard cellen per pak:'); + $("#inventory").jqxNumberInput({ decimalDigits: 0 }); } else if (dataRecord.form == 1) { // Dry $("#pmpt_cost").html('Prijs per kg:'); $("#pmpt_inventory").html('Voorraad gram:'); - $("#pmpt_cells").html('Biljoen cellen per gram:'); - $("#inventory").jqxNumberInput({ decimalDigits: 1, spinButtonsStep: 0.5 }); + $("#pmpt_cells").html('Miljard cellen per gram:'); + $("#inventory").jqxNumberInput({ decimalDigits: 1 }); } else { $("#pmpt_cost").html('Prijs per liter:'); $("#pmpt_inventory").html('Voorraad ml:'); - $("#pmpt_cells").html('Biljoen cellen per ml:'); - $("#inventory").jqxNumberInput({ decimalDigits: 1, spinButtonsStep: 0.5 }); + $("#pmpt_cells").html('Miljard cellen per ml:'); + $("#inventory").jqxNumberInput({ decimalDigits: 1 }); } }