From 7f230f2999a806f92ea2df2a41a4df8931729041 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Mon, 18 Jul 2022 09:48:02 +0200 Subject: [PATCH] Set ids to skip to content/navigation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- lib/Controller/PageController.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/Controller/PageController.php b/lib/Controller/PageController.php index 30813bc26..46279df0d 100644 --- a/lib/Controller/PageController.php +++ b/lib/Controller/PageController.php @@ -94,7 +94,10 @@ public function index() { $this->eventDispatcher->dispatchTyped(new LoadViewer()); } - $response = new TemplateResponse('deck', 'main'); + $response = new TemplateResponse('deck', 'main', [ + 'id-app-content' => '#app-content-vue', + 'id-app-navigation' => '#app-navigation-vue', + ]); if ($this->config->getSystemValueBool('debug', false)) { $csp = new ContentSecurityPolicy();