From 2d792754810d520ef65239e6e63dad04c228958c Mon Sep 17 00:00:00 2001 From: Kris Date: Wed, 2 Mar 2022 21:17:43 -0500 Subject: [PATCH] DEV: add class name to custom footer html (#16089) --- .../javascripts/discourse/app/templates/application.hbs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/assets/javascripts/discourse/app/templates/application.hbs b/app/assets/javascripts/discourse/app/templates/application.hbs index b66122fdd34..861c67f8781 100644 --- a/app/assets/javascripts/discourse/app/templates/application.hbs +++ b/app/assets/javascripts/discourse/app/templates/application.hbs @@ -31,7 +31,10 @@ {{plugin-outlet name="above-footer" connectorTagName="div" args=(hash showFooter=showFooter)}} {{#if showFooter}} - {{custom-html name="footer" triggerAppEvent="true"}} + {{custom-html + name="footer" + triggerAppEvent="true" + classNames="custom-footer-content"}} {{/if}} {{plugin-outlet name="below-footer" connectorTagName="div" args=(hash showFooter=showFooter)}}