Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-ora2
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-ora2
Commits
4ac15f97
Commit
4ac15f97
authored
Mar 12, 2014
by
Will Daly
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #110 from edx/will/fix-js-submission-uuid-firefox
User innerHTML instead of innerText to support firefox
parents
a29c5383
62182185
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
apps/openassessment/xblock/static/js/src/oa_base.js
+2
-2
No files found.
apps/openassessment/xblock/static/js/src/oa_base.js
View file @
4ac15f97
...
...
@@ -208,7 +208,7 @@ OpenAssessment.BaseUI.prototype = {
**/
peerAssess
:
function
()
{
// Retrieve assessment info from the DOM
var
submissionId
=
$
(
"span#peer_submission_uuid"
,
this
.
element
)[
0
].
inner
Text
;
var
submissionId
=
$
(
"span#peer_submission_uuid"
,
this
.
element
)[
0
].
inner
HTML
.
trim
()
;
var
optionsSelected
=
{};
$
(
"#peer-assessment--001__assessment input[type=radio]:checked"
,
this
.
element
).
each
(
function
(
index
,
sel
)
{
...
...
@@ -238,7 +238,7 @@ OpenAssessment.BaseUI.prototype = {
**/
selfAssess
:
function
()
{
// Retrieve self-assessment info from the DOM
var
submissionId
=
$
(
"span#self_submission_uuid"
,
this
.
element
)[
0
].
inner
Text
;
var
submissionId
=
$
(
"span#self_submission_uuid"
,
this
.
element
)[
0
].
inner
HTML
.
trim
()
;
var
optionsSelected
=
{};
$
(
"#self-assessment--001__assessment input[type=radio]:checked"
,
this
.
element
).
each
(
function
(
index
,
sel
)
{
...
...
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