Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ It is recommended that you use the web-version available at <https://scigrade.co

| Chrome | Firefox | Edge | Safari | Opera | Mobile |
| ------ | ------- | ---- | ------ | ----- | ------ |
| ✔ | ✔ | ✔ | ✔ | ? | ✔ |
| ✔ | ✔ | ✔ | ✔ | ? | ✔ |

## Installation/Open

Expand Down
16 changes: 11 additions & 5 deletions core/systemrun.html
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@
data-toggle="modal"
href="#accountModal"
id="accountIO"
onclick="openAccountManagement();"
onclick="openAccountManagement()"
hidden
>
Account
Expand Down Expand Up @@ -328,15 +328,21 @@ <h5 class="modal-title" id="feedbackModalLabel">Done!</h5>
type="button"
id="seeFeedback"
class="btn btn-primary"
onclick="showFeedback(); $('#dismissFeedbackModal').click();"
onclick="
showFeedback();
$('#dismissFeedbackModal').click();
"
>
See Feedback
</button>
<button
type="button"
id="backAssignments"
class="btn btn-primary"
onclick="backToAssignments(); $('#dismissFeedbackModal').click();"
onclick="
backToAssignments();
$('#dismissFeedbackModal').click();
"
>
Back to Assignments
</button>
Expand Down Expand Up @@ -378,7 +384,7 @@ <h5 class="modal-title" id="accountModalLabel">Account Management</h5>
aria-label="Close"
class="close"
data-dismiss="modal"
onclick="$('#accountModal').modal('hide');"
onclick="$('#accountModal').modal('hide')"
type="button"
>
<span aria-hidden="true">&times;</span>
Expand All @@ -390,7 +396,7 @@ <h5 class="modal-title" id="accountModalLabel">Account Management</h5>
class="btn btn-secondary"
data-dismiss="modal"
id="dismissAccountModal"
onclick="$('#accountModal').modal('hide');"
onclick="$('#accountModal').modal('hide')"
type="button"
>
Close
Expand Down
Loading