(type, title, detail = "")
| 1609 | } |
| 1610 | |
| 1611 | function showPaperFeedback(type, title, detail = "") { |
| 1612 | const target = $("paperFeedbackResult"); |
| 1613 | if (!target) return; |
| 1614 | target.className = `paper-feedback-result ${type || "success"}`; |
| 1615 | target.innerHTML = ` |
| 1616 | <strong>${escapeHtml(title)}</strong> |
| 1617 | ${detail ? `<span>${escapeHtml(detail)}</span>` : ""} |
| 1618 | `; |
| 1619 | target.hidden = false; |
| 1620 | } |
| 1621 | |
| 1622 | function setSubmitButtonsBusy(busy, generateReports = false) { |
| 1623 | const feedbackButton = $("submitFeedbackBtn"); |
no test coverage detected