Commit 6456a7de by Joe Blaylock

Merge pull request #1140 from edx/giulio/rc-fix-20130927

Giulio Release Candidate fixes for 9/27
parents 0ca89681 f2291dd1
......@@ -357,7 +357,7 @@ class @CombinedOpenEnded
@save_button.attr("disabled",true)
$.postWithPrefix "#{@ajax_url}/store_answer", data, (response) =>
if response.success
@gentle_alert("Answer saved.")
@gentle_alert("Answer saved, but not yet submitted.")
else
@errors_area.html(response.error)
@save_button.attr("disabled",false)
......
......@@ -135,7 +135,13 @@
<li class="field required text" id="field-name">
<label for="name">${_('Full Name')}</label>
<input id="name" type="text" name="name" value="" placeholder="${_('example: Jane Doe')}" required aria-required="true" aria-describedby="name-tip" />
<span class="tip tip-input" id="name-tip">${_("Needed for any certificates you may earn <strong>(cannot be changed later)</strong>")}</span>
<span class="tip tip-input" id="name-tip">
% if self.stanford_theme_enabled():
${_("Needed for any Statements of Accomplishment you may earn <strong>(cannot be changed later)</strong>")}
% else:
${_("Needed for any certificates you may earn <strong>(cannot be changed later)</strong>")}
% endif
</span>
</li>
</ol>
......
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