From 93e6606d6d5469be1c659aab4e496a43d63a7d36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Phillip=20K=C3=BChne?= Date: Fri, 30 Jun 2023 00:13:48 +0200 Subject: [PATCH] Set focus on singer name input when modal is shown --- backend/templates/songlist.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/backend/templates/songlist.html b/backend/templates/songlist.html index 10df759..5799757 100644 --- a/backend/templates/songlist.html +++ b/backend/templates/songlist.html @@ -67,6 +67,9 @@ e.preventDefault(); submitModal(); }); + $('#enqueueModal').on('shown.bs.modal', function (e) { + $("#singerNameInput").focus(); + }) });