Skip to content

Commit

Permalink
fixed a couple of bugs - race condition w tabLeftTG vs tabClosed, and…
Browse files Browse the repository at this point in the history
… card editor not activating save. Also re-indented background.js which caused a big diff
  • Loading branch information
tconfrey committed Feb 20, 2024
1 parent ab50958 commit 7274d25
Show file tree
Hide file tree
Showing 6 changed files with 328 additions and 322 deletions.
2 changes: 1 addition & 1 deletion app/bt.js
Original file line number Diff line number Diff line change
Expand Up @@ -1430,7 +1430,7 @@ function editRow(e) {

$(".editNode").on('input', function() {
// enable update button if one of the texts is edited and title is not empty
if ($("#topicName").val()) return;
if (!$("#topicName").val()) return;
$("#update").prop('disabled', false);
});

Expand Down
Loading

0 comments on commit 7274d25

Please sign in to comment.