Commit 2380235f by Renzo Lucioni

Add Optimizely widget

parent 1d64b50d
...@@ -148,7 +148,10 @@ FEATURES = { ...@@ -148,7 +148,10 @@ FEATURES = {
# Staff Debug tool. # Staff Debug tool.
'ENABLE_STUDENT_HISTORY_VIEW': True, 'ENABLE_STUDENT_HISTORY_VIEW': True,
# segment.io for LMS--need to explicitly turn it on for production. # Optimizely for the LMS--need to explicitly turn on for production.
'OPTIMIZELY_LMS': False,
# Segment.io for LMS--need to explicitly turn on for production.
'SEGMENT_IO_LMS': False, 'SEGMENT_IO_LMS': False,
# Provide a UI to allow users to submit feedback from the LMS (left-hand help modal) # Provide a UI to allow users to submit feedback from the LMS (left-hand help modal)
......
...@@ -90,6 +90,8 @@ ...@@ -90,6 +90,8 @@
<script src="${static.url('js/html5shiv.js')}"></script> <script src="${static.url('js/html5shiv.js')}"></script>
<![endif]--> <![endif]-->
<%include file="widgets/optimizely.html" />
<meta name="path_prefix" content="${EDX_ROOT_URL}"> <meta name="path_prefix" content="${EDX_ROOT_URL}">
<meta name="google-site-verification" content="_mipQ4AtZQDNmbtOkwehQDOgCxUUV2fb_C0b6wbiRHY" /> <meta name="google-site-verification" content="_mipQ4AtZQDNmbtOkwehQDOgCxUUV2fb_C0b6wbiRHY" />
......
...@@ -22,6 +22,8 @@ ...@@ -22,6 +22,8 @@
<%block name="headextra"/> <%block name="headextra"/>
<%include file="widgets/optimizely.html" />
<!-- NOTE: if we want segment io on these iframes at some point, put <!-- NOTE: if we want segment io on these iframes at some point, put
include file="widgets/segment-io.html" include file="widgets/segment-io.html"
here --> here -->
......
% if settings.FEATURES.get('OPTIMIZELY_LMS'):
<script src="//cdn.optimizely.com/js/1706490390.js"></script>
% endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment