Commit 660c35f6 by ichuang

additional changes to make inline textinput work properly

parent b23bfc75
......@@ -10,11 +10,23 @@
% endif
>
% elif state == 'correct':
<div class="correct" id="status_${id}">
<div class="correct" id="status_${id}"
% if inline:
style="display:inline"
% endif
>
% elif state == 'incorrect':
<div class="incorrect" id="status_${id}">
<div class="incorrect" id="status_${id}"
% if inline:
style="display:inline"
% endif
>
% elif state == 'incomplete':
<div class="incorrect" id="status_${id}">
<div class="incorrect" id="status_${id}"
% if inline:
style="display:inline"
% endif
>
% endif
% if hidden:
<div style="display:none;" name="${hidden}" inputid="input_${id}" />
......
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