Skip to content

Commit

Permalink
SAK-33948 allowing batch feedback comments for non-electronic assignm…
Browse files Browse the repository at this point in the history
  • Loading branch information
bgarciaentornos authored and ern committed Feb 22, 2018
1 parent 409bdb6 commit 24e3dc7
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
ASN.toggleSendFeedbackPanel();
}

if ( (checkedCount === 0 && resubPanel.style.display !== "none")
|| (checkedCount !== 0 && resubPanel.style.display === "none") )
if ( resubPanel != null && ((checkedCount === 0 && resubPanel.style.display !== "none")
|| (checkedCount !== 0 && resubPanel.style.display === "none") ))
{
ASN.toggleAllowResubmissionPanel();
}
Expand Down Expand Up @@ -295,7 +295,6 @@ function printView(url) {
</div>
#end

#if ($!value_SubmissionType != 4)
<div id="sendFeedbackPanel">
<p class="discTria">
<a href="javascript:void(0)" onclick="ASN.toggleSendFeedbackPanel();">
Expand Down Expand Up @@ -339,6 +338,7 @@ function printView(url) {
</div>
</div>
<input type="hidden" name = "allowResToggle" id = "allowResToggle" value="" />
#if ($!value_SubmissionType != 4)
<div id="allowResubmissionPanel">
<p class="discTria">
<a href="javascript:void(0)" onclick="ASN.toggleAllowResubmissionPanel();">
Expand Down

0 comments on commit 24e3dc7

Please sign in to comment.