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
aa786d13
Commit
aa786d13
authored
Nov 14, 2012
by
Victor Shnayder
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
move computers--adding test file
parent
c7ab37bd
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
32 additions
and
3 deletions
+32
-3
lms/static/coffee/src/staff_grading/staff_grading.coffee
+8
-3
lms/static/coffee/src/staff_grading/test_grading.html
+24
-0
No files found.
lms/static/coffee/src/staff_grading/staff_grading.coffee
View file @
aa786d13
# wrap everything in a class in case we want to use inside xmodules later
class
StaffGrading
constructor
:
->
alert
(
'hi!'
)
@
submission_container
=
$
(
'.submission-container'
)
@
rubric_container
=
$
(
'.rubric-container'
)
@
submit_button
=
$
(
'.submit-button'
)
@
mock_backend
=
true
@
load
()
load
:
->
alert
(
'loading'
)
# for now, just create an instance and load it...
grading
=
new
StaffGrading
$
(
document
).
ready
(
grading
.
load
)
$
(
document
).
ready
(()
->
new
StaffGrading
)
lms/static/coffee/src/staff_grading/test_grading.html
0 → 100644
View file @
aa786d13
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<title></title>
<script
src=
"http://code.jquery.com/jquery-latest.js"
></script>
<script
type=
"text/javascript"
src=
"staff_grading.js"
></script>
</head>
<body>
<h1>
Staff grading
</h1>
<div
class=
"submission-container"
>
</div>
<div
class=
"rubric-container"
>
</div>
<div
class=
"submission"
>
<input
type=
"button"
value=
"Submit"
class=
"submit-button"
name=
"show"
/>
</div>
</body>
</html>
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