Skip to content

Commit

Permalink
further adjustment for #23
Browse files Browse the repository at this point in the history
  • Loading branch information
sirdarckcat authored Nov 14, 2017
1 parent c293322 commit 2f129ef
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/window.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,11 @@ function activateRequest(reqId) {
rows[i].classList.add('active');

if (!request.completed && ignore.checked) {
// mark it as completed even though this happens later anyway so that
// UI is greyed out.
request.completed = true;
releaseBlock(reqId, {}, true);
rows[i].focus();
// Refocus this request in 10ms once its completed
let row = rows[i];
setTimeout(_=>row.focus(),10);
}

if (!ignore.checked) {
Expand Down

0 comments on commit 2f129ef

Please sign in to comment.