Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-proctoring
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-proctoring
Commits
3e08fb6a
Commit
3e08fb6a
authored
Aug 05, 2015
by
chrisndodge
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #60 from edx/afzaledx/PHX-79_instructor_dashboard_view_moved
PHX-79
parents
44b442d7
68094133
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
10 deletions
+4
-10
edx_proctoring/static/proctoring/js/proctored_app.js
+0
-6
edx_proctoring/static/proctoring/js/views/proctored_exam_attempt_view.js
+4
-4
No files found.
edx_proctoring/static/proctoring/js/proctored_app.js
View file @
3e08fb6a
...
...
@@ -6,10 +6,4 @@ $(function() {
model
:
new
ProctoredExamModel
()
});
proctored_exam_view
.
render
();
var
proctored_exam_attempt_view
=
new
edx
.
instructor_dashboard
.
proctoring
.
ProctoredExamAttemptView
({
el
:
$
(
'.student-proctored-exam-container'
),
template_url
:
'/static/proctoring/templates/student-proctored-exam-attempts.underscore'
,
collection
:
new
edx
.
instructor_dashboard
.
proctoring
.
ProctoredExamAttemptCollection
(),
model
:
new
edx
.
instructor_dashboard
.
proctoring
.
ProctoredExamAttemptModel
()
});
});
edx_proctoring/static/proctoring/js/views/proctored_exam_attempt_view.js
View file @
3e08fb6a
...
...
@@ -18,10 +18,10 @@ var edx = edx || {};
};
edx
.
instructor_dashboard
.
proctoring
.
ProctoredExamAttemptView
=
Backbone
.
View
.
extend
({
initialize
:
function
(
options
)
{
this
.
$el
=
options
.
el
;
this
.
collection
=
options
.
collection
;
this
.
tempate_url
=
options
.
template_url
;
this
.
model
=
options
.
model
;
this
.
setElement
(
$
(
'.student-proctored-exam-container'
))
;
this
.
collection
=
new
edx
.
instructor_dashboard
.
proctoring
.
ProctoredExamAttemptCollection
()
;
this
.
tempate_url
=
'/static/proctoring/templates/student-proctored-exam-attempts.underscore'
;
this
.
model
=
new
edx
.
instructor_dashboard
.
proctoring
.
ProctoredExamAttemptModel
()
;
this
.
course_id
=
this
.
$el
.
data
(
'course-id'
);
this
.
template
=
null
;
...
...
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