Skip to content

Commit

Permalink
SAK-31532 allow downloading all submissions (sakaiproject#3058)
Browse files Browse the repository at this point in the history
  • Loading branch information
bgarciaentornos authored and juanjmerono committed Aug 1, 2016
1 parent bbb9995 commit 0084b2b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions assignment/assignment-tool/tool/src/webapp/js/assignments.js
Original file line number Diff line number Diff line change
Expand Up @@ -726,6 +726,10 @@ ASN.invokeDownloadUrl = function(accessPointUrl, actionString, alertMessage, par
if (document.getElementById('feedbackAttachments') && document.getElementById('feedbackAttachments').checked)
{
extraInfoArray[extraInfoArray.length]="feedbackAttachments=true";
}
if (document.getElementById('includeNotSubmitted') && document.getElementById('includeNotSubmitted').checked)
{
extraInfoArray[extraInfoArray.length]="includeNotSubmitted=true";
}
if (extraInfoArray.length === 0)
{
Expand Down

0 comments on commit 0084b2b

Please sign in to comment.