Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
c340ffe0
Commit
c340ffe0
authored
Jun 06, 2012
by
Prem Sichanugrist
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix code formatting
parent
d690aebc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
42 additions
and
39 deletions
+42
-39
common/lib/capa/templates/textinput_dynamath.html
+42
-39
No files found.
common/lib/capa/templates/textinput_dynamath.html
View file @
c340ffe0
...
@@ -2,49 +2,52 @@
...
@@ -2,49 +2,52 @@
### version of textline.html which does dynammic math
### version of textline.html which does dynammic math
###
###
<section
class=
"text-input-dynamath"
>
<section
class=
"text-input-dynamath"
>
<table
style=
"display:inline; vertical-align:middle;"
><tr><td>
<table
style=
"display:inline; vertical-align:middle;"
>
<input
type=
"text"
name=
"input_${id}"
id=
"input_${id}"
value=
"${value}"
<tr>
%
if
size:
<td>
size=
"${size}"
<input
type=
"text"
name=
"input_${id}"
id=
"input_${id}"
value=
"${value}"
size=
"${size if size else ''}"
/>
%
endif
</td>
onkeyup=
"DoUpdateMath('${id}')"
<td>
/>
<span
id=
"answer_${id}"
></span>
</td><td>
<span
id=
"answer_${id}"
></span>
% if state == 'unsubmitted':
<span
class=
"unanswered"
style=
"display:inline-block;"
id=
"status_${id}"
></span>
% elif state == 'correct':
<span
class=
"correct"
id=
"status_${id}"
></span>
% elif state == 'incorrect':
<span
class=
"incorrect"
id=
"status_${id}"
></span>
% elif state == 'incomplete':
<span
class=
"incorrect"
id=
"status_${id}"
></span>
% endif
</td>
</tr>
<tr>
<td>
<span
id=
"display_${id}"
>
`{::}`
</span>
</td>
<td>
<textarea
style=
"display:none"
id=
"input_${id}_dynamath"
name=
"input_${id}_dynamath"
>
</textarea>
</td>
</tr>
</table>
% if state == 'unsubmitted':
##
<span
class=
"unanswered"
style=
"display:inline-block;"
id=
"status_${id}"
></span>
% elif state == 'correct':
<span
class=
"correct"
id=
"status_${id}"
></span>
% elif state == 'incorrect':
<span
class=
"incorrect"
id=
"status_${id}"
></span>
% elif state == 'incomplete':
<span
class=
"incorrect"
id=
"status_${id}"
></span>
% endif
</td></tr><tr><td>
<span
id=
"display_${id}"
>
`{::}`
</span>
</td><td>
<textarea
style=
"display:none"
id=
"input_${id}_dynamath"
name=
"input_${id}_dynamath"
>
</textarea>
</td></tr>
</table>
##
## javascript for dynamic math: add this math element to the MathJax rendering queue
## javascript for dynamic math: add this math element to the MathJax rendering queue
## also adds to global jaxset js array
## also adds to global jaxset js array
##
##
<script
type=
"text/javascript"
>
<script
type=
"text/javascript"
>
MathJax
.
Hub
.
queue
.
Push
(
function
()
{
MathJax
.
Hub
.
queue
.
Push
(
function
()
{
math
=
MathJax
.
Hub
.
getAllJax
(
"display_${id}"
)[
0
];
math
=
MathJax
.
Hub
.
getAllJax
(
"display_${id}"
)[
0
];
if
(
math
){
if
(
math
){
jaxset
[
"${id}"
]
=
math
;
jaxset
[
"${id}"
]
=
math
;
math
.
Text
(
document
.
getElementById
(
"input_${id}"
).
value
);
math
.
Text
(
document
.
getElementById
(
"input_${id}"
).
value
);
// UpdateMathML(math,"${id}");
// UpdateMathML(math,"${id}");
}
}
});
});
</script>
</script>
% if msg:
% if msg:
<br/>
<br/>
<span
class=
"debug"
>
${msg|n}
</span>
<span
class=
"debug"
>
${msg|n}
</span>
% endif
% endif
</section>
</section>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment