diff -r f4de55f587c1 -r 367ae7ff52f0 www/js/global.js --- a/www/js/global.js Fri May 29 09:17:52 2020 +0200 +++ b/www/js/global.js Sun May 31 12:23:01 2020 +0200 @@ -247,6 +247,22 @@ }, StarterTypeAdapter = new $.jqx.dataAdapter(StarterTypeSource), +PitchrateData = [ + { rate: 0, nl: ' - Kies factor - ' }, + { rate: 0.75, nl: 'Ale, 0.75' }, + { rate: 1.0, nl: 'Ale, 1.00 zwaar > 1.060' }, + { rate: 1.25, nl: 'Ale, 1.25 zwaar > 1.076' }, + { rate: 1.5, nl: 'Lager 1.50' }, + { rate: 2.0, nl: 'Lager, 2.00 zwaar > 1.060' }, + { rate: 0.075, nl: 'Kveik, 0.075 origineel' } +], +PitchrateSource = { + localdata: PitchrateData, + datatype: 'array', + datafields: [{ name: 'rate' }, { name: 'nl' }] +}, +PitchrateAdapter = new $.jqx.dataAdapter(PitchrateSource), + MiscTypeData = [ { id: 0, en: 'Spice', nl: 'Specerij' }, { id: 1, en: 'Herb', nl: 'Kruid' },