Skip to content

Commit

Permalink
Fix the addition of the proctored profiling parameter to in-exam poll…
Browse files Browse the repository at this point in the history
…ing requests
  • Loading branch information
Douglas Hall committed Jun 23, 2016
1 parent f5bc024 commit 6fc94cd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ var edx = edx || {};
self.secondsLeft --;
if (self.timerTick % 30 === 0){
var url = self.model.url + '/' + self.model.get('attempt_id');
var queryString = '?sourceid=in_exam&proctored=' + this.model.get('taking_as_proctored');
var queryString = '?sourceid=in_exam&proctored=' + self.model.get('taking_as_proctored');
$.ajax(url + queryString).success(function(data) {
if (data.status === 'error') {
// The proctoring session is in error state
Expand Down

0 comments on commit 6fc94cd

Please sign in to comment.