Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
iROCKBUNNY committed Oct 12, 2023
1 parent 41f4c10 commit fc14ff4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assets/js/n-back.js
Original file line number Diff line number Diff line change
Expand Up @@ -197,13 +197,13 @@ function startCurrentBlock() {
$('#action-buttons').append(
$('<div>').addClass('ui two large buttons').append(
$('<div>').addClass('ui positive left labeled icon button').html('<i class="arrow left icon"></i>Target').click(function () {
markAsTarget();
markAsTarget(new Date());
})
).append(
$('<div>').addClass('or')
).append(
$('<div>').addClass('ui negative right labeled icon button').html('Non-Target<i class="arrow right icon"></i>').click(function () {
markAsNonTarget();
markAsNonTarget(new Date());
})
).append(
$('<audio>').attr({
Expand Down

0 comments on commit fc14ff4

Please sign in to comment.