File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ SITE_NAME=Open edX
2525SUPPORT_CENTER_TEXT = ' '
2626SUPPORT_CENTER_URL = null
2727USER_INFO_COOKIE_NAME = edx-user-info
28- LOGO_ALT_TEXT = " Open edX Logo"
28+ FOOTER_LOGO_ALT_TEXT = " Open edX Logo"
2929LOGO_URL = https://edx-cdn.org/v3/default/logo.svg
3030LOGO_TRADEMARK_URL = https://edx-cdn.org/v3/default/logo-trademark.svg
3131LOGO_WHITE_URL = https://edx-cdn.org/v3/default/logo-white.svg
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ custom legal links in the footer. Optional environment variables can also be set
5252* ``ACCESSIBILITY_URL `` - Accessibility page URL.
5353* ``CONTACT_URL `` - Contact Us page URL.
5454* ``HONOR_CODE_URL `` - Honor Code page URL.
55- * ``LOGO_ALT_TEXT `` - Alt text for the logo.
55+ * ``FOOTER_LOGO_ALT_TEXT `` - Alt text for the footer logo.
5656* ``SHOW_LOGO `` - Optionally display the logo.
5757* ``SUPPORT_CENTER_TEXT `` - Text for the Support Center link i.e. `Help Center `.
5858* ``SUPPORT_CENTER_URL `` - Support center URL.
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ subscribe(APP_CONFIG_INITIALIZED, () => {
2121 ACCESSIBILITY_URL : process . env . ACCESSIBILITY_URL ,
2222 CONTACT_URL : process . env . CONTACT_URL ,
2323 HONOR_CODE_URL : process . env . HONOR_CODE_URL ,
24- LOGO_ALT_TEXT : process . env . LOGO_ALT_TEXT ,
24+ FOOTER_LOGO_ALT_TEXT : process . env . FOOTER_LOGO_ALT_TEXT ,
2525 PRIVACY_POLICY_URL : process . env . PRIVACY_POLICY_URL ,
2626 SHOW_LOGO : process . env . SHOW_LOGO ,
2727 SUPPORT_CENTER_TEXT : process . env . SUPPORT_CENTER_TEXT ,
@@ -80,7 +80,7 @@ class SiteFooter extends React.Component {
8080 < img
8181 style = { { maxHeight : 45 } }
8282 src = { logo || config . LOGO_TRADEMARK_URL }
83- alt = { getConfig ( ) . LOGO_ALT_TEXT || intl . formatMessage ( messages [ 'footer.logo.altText' ] ) }
83+ alt = { getConfig ( ) . FOOTER_LOGO_ALT_TEXT || intl . formatMessage ( messages [ 'footer.logo.altText' ] ) }
8484 />
8585 </ a >
8686 ) }
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ process.env.CONTACT_URL = 'http://localhost:18000/contact';
2727process . env . SUPPORT_CENTER_URL = 'http://localhost:18000/contact' ;
2828process . env . SUPPORT_CENTER_TEXT = 'SUPPORT CENTER' ;
2929process . env . TRADEMARK_TEXT = 'Trade Mark text' ;
30- process . env . LOGO_ALT_TEXT = 'alt text' ;
30+ process . env . FOOTER_LOGO_ALT_TEXT = 'alt text' ;
3131process . env . SHOW_LOGO = true ;
3232process . env . SUPPORT_EMAIL = '[email protected] ' ; 3333process . env . ACCESSIBILITY_URL = 'https://www.edx.org/accessibility' ;
You can’t perform that action at this time.
0 commit comments