Commit 8a7c2d66 by David Baumgold

Merge pull request #8068 from edx/db/remove-mathplayer-message

Remove MathPlayer message
parents 8f22b511 c3095235
...@@ -133,8 +133,6 @@ dir_rtl = 'rtl' if get_language_bidi() else 'ltr' ...@@ -133,8 +133,6 @@ dir_rtl = 'rtl' if get_language_bidi() else 'ltr'
<div class="window-wrap" dir="${dir_rtl}"> <div class="window-wrap" dir="${dir_rtl}">
<a class="nav-skip" href="<%block name="nav_skip">#content</%block>">${_("Skip to main content")}</a> <a class="nav-skip" href="<%block name="nav_skip">#content</%block>">${_("Skip to main content")}</a>
<%include file="mathjax_accessible.html" />
% if not disable_header: % if not disable_header:
<%include file="${header_file}" /> <%include file="${header_file}" />
% endif % endif
......
<%! from django.utils.translation import ugettext as _ %>
<!--[if IE]>
<div class="sr message-accessibility message" id="mathjax-accessibility-message" aria-hidden="true">
<p class="copy">${
_("This page features MathJax technology to render mathematical "
"formulae. To make math accessibile, we suggest using the MathPlayer "
"plugin. Please visit the {link_start}MathPlayer Download "
"Page{link_end} to download the plugin for your browser.").format(
link_start = u'<a href="//www.dessci.com/en/products/mathplayer/'
'download.htm">',
link_end = u'</a>')
}</p>
</div>
<div class="sr message-accessibility message" id="mathplayer-browser-message" aria-hidden="true">
<p class="copy">
${_("Your browser does not support the MathPlayer plugin. To use "
"MathPlayer, please use Internet Explorer 6 through 9.")}
</p>
</div>
<![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