Scoll to the recipe card after selecting a recipe on mobile devices (closes #547)

This commit is contained in:
Bernd Bestel
2020-02-09 15:11:38 +01:00
parent 06fe308f31
commit 3af5bd8e29
2 changed files with 11 additions and 1 deletions

View File

@@ -26,7 +26,16 @@ if (typeof recipe !== "undefined")
var cardId = "#recipe-card-" + recipe;
$(cardId).addClass("bg-primary").addClass("text-white");
$(cardId)[0].scrollIntoView();
if ($(window).width() < 768)
{
// Scroll to recipe card on mobile
$("#selectedRecipeCard")[0].scrollIntoView();
}
else
{
$(cardId)[0].scrollIntoView();
}
}
if (GetUriParam("search") !== undefined)