Skip to content

Commit

Permalink
Workaround for linux w/tmp mounted as noexec; spellcheck fails (#2548)
Browse files Browse the repository at this point in the history
  • Loading branch information
scottnonnenberg-signal committed Jul 20, 2018
1 parent efd9caf commit 4e79c85
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions js/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,10 @@
};

const startSpellCheck = () => {
if (!window.enableSpellCheck || !window.disableSpellCheck) {
return;
}

if (window.Events.getSpellCheck()) {
window.enableSpellCheck();
} else {
Expand Down

0 comments on commit 4e79c85

Please sign in to comment.