mirror of
https://github.com/grocy/grocy.git
synced 2026-03-31 18:19:25 +02:00
20 lines
576 B
JavaScript
20 lines
576 B
JavaScript
if (BoolVal(Grocy.UserSettings.recipe_ingredients_group_by_product_group))
|
|
{
|
|
$("#recipe_ingredients_group_by_product_group").prop("checked", true);
|
|
}
|
|
|
|
if (BoolVal(Grocy.UserSettings.recipes_show_list_side_by_side))
|
|
{
|
|
$("#recipes_show_list_side_by_side").prop("checked", true);
|
|
}
|
|
|
|
if (BoolVal(Grocy.UserSettings.recipes_show_ingredient_checkbox))
|
|
{
|
|
$("#recipes_show_ingredient_checkbox").prop("checked", true);
|
|
}
|
|
|
|
if (BoolVal(Grocy.UserSettings.recipes_ignore_stock_on_add_to_cart_checkbox))
|
|
{
|
|
$("#recipes_ignore_stock_on_add_to_cart_checkbox").prop("checked", true);
|
|
}
|