Add option to disable automatic switching to compact shoppinglist view on mobile devices (#551)

This commit is contained in:
Marc Ole Bulling
2020-02-09 15:25:54 +01:00
committed by GitHub
parent e9f55de987
commit a0ab5c5e94
2 changed files with 2 additions and 1 deletions

View File

@@ -384,7 +384,7 @@ if (window.location.hash === "#compact")
}
// Auto switch to compact view on mobile
if ($(window).width() < 768 & window.location.hash !== "#compact")
if ($(window).width() < 768 & window.location.hash !== "#compact" && !BoolVal(Grocy.UserSettings.shopping_list_disable_auto_compact_view))
{
$("#shopping-list-compact-view-button").click();
}