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
bc8244b7
Commit
bc8244b7
authored
Aug 16, 2013
by
Vik Paruchuri
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename reset to try again, hide and disable submit buttons
parent
4f3ec68f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
3 deletions
+9
-3
common/lib/xmodule/xmodule/js/src/combinedopenended/display.coffee
+3
-1
common/lib/xmodule/xmodule/js/src/peergrading/peer_grading_problem.coffee
+5
-1
lms/templates/combinedopenended/combined_open_ended.html
+1
-1
No files found.
common/lib/xmodule/xmodule/js/src/combinedopenended/display.coffee
View file @
bc8244b7
...
...
@@ -357,8 +357,8 @@ class @CombinedOpenEnded
save_answer
:
(
event
)
=>
@
submit_button
.
attr
(
"disabled"
,
true
)
event
.
preventDefault
()
@
submit_button
.
hide
()
event
.
preventDefault
()
@
answer_area
.
attr
(
"disabled"
,
true
)
max_filesize
=
2
*
1000
*
1000
#2MB
pre_can_upload_files
=
@
can_upload_files
...
...
@@ -404,6 +404,8 @@ class @CombinedOpenEnded
@
is_ctrl
=
false
save_assessment
:
(
event
)
=>
@
submit_button
.
attr
(
"disabled"
,
true
)
@
submit_button
.
hide
()
event
.
preventDefault
()
if
@
child_state
==
'assessing'
&&
@
rub
.
check_complete
()
checked_assessment
=
@
rub
.
get_total_score
()
...
...
common/lib/xmodule/xmodule/js/src/peergrading/peer_grading_problem.coffee
View file @
bc8244b7
...
...
@@ -322,10 +322,12 @@ class @PeerGradingProblem
submit_calibration_essay
:
()
=>
data
=
@
construct_data
()
@
submit_button
.
hide
()
@
backend
.
post
(
'save_calibration_essay'
,
data
,
@
calibration_callback
)
submit_grade
:
()
=>
data
=
@
construct_data
()
@
submit_button
.
hide
()
@
backend
.
post
(
'save_grade'
,
data
,
@
submission_callback
)
...
...
@@ -448,6 +450,7 @@ class @PeerGradingProblem
@
feedback_area
.
val
(
""
)
@
submit_button
.
show
()
@
submit_button
.
unbind
(
'click'
)
@
submit_button
.
click
@
submit_calibration_essay
@
scroll_to_top
()
...
...
@@ -476,7 +479,8 @@ class @PeerGradingProblem
@
flag_student_container
.
show
()
@
answer_unknown_container
.
show
()
@
feedback_area
.
val
(
""
)
@
submit_button
.
show
()
@
submit_button
.
unbind
(
'click'
)
@
submit_button
.
click
@
submit_grade
@
scroll_to_top
()
...
...
lms/templates/combinedopenended/combined_open_ended.html
View file @
bc8244b7
...
...
@@ -39,7 +39,7 @@
</div>
<div
class=
"oe-tools response-tools"
>
<span
class=
"oe-tools-label"
></span>
<input
type=
"button"
value=
"${_('
Reset
')}"
class=
"reset-button"
name=
"reset"
/>
<input
type=
"button"
value=
"${_('
Try Again
')}"
class=
"reset-button"
name=
"reset"
/>
</div>
</div>
...
...
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