Skip to content

Commit

Permalink
Thous Shalt Run The Tests BEFORE Committing!
Browse files Browse the repository at this point in the history
  • Loading branch information
parsingphase committed Jun 14, 2017
1 parent 40ec3ca commit 30a4440
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/js/ticket.js
Expand Up @@ -1341,7 +1341,7 @@ var ticketer = (function() {
if (that.displayOptions.selfSubmissionKeyNeeded && !that.displayOptions.isAdmin) {
ticket.submissionKey = submissionKeyInput.val();
if (!ticket.submissionKey.trim()) {
window.alert("Please check submission code");
window.alert('Please check submission code');
return false;
}
}
Expand All @@ -1358,7 +1358,7 @@ var ticketer = (function() {
$('#userSubmitFormOuter').hide().html('');
$('#searchTarget').html('');
} else if (data.error && (data.error === 'E_BAD_SECRET')) {
window.alert("Please check submission code");
window.alert('Please check submission code');
} else {
that.showAppMessage('Error saving ticket', 'danger');
formBlock.html(
Expand Down

0 comments on commit 30a4440

Please sign in to comment.