From deb52aaa0fc4abf5ff8dd45b52ff4a3569f3c4ab Mon Sep 17 00:00:00 2001 From: Malmik <30472695+Malmik@users.noreply.github.com> Date: Fri, 19 Nov 2021 12:42:08 +0100 Subject: [PATCH] disable spellcheck This is confirmed working on my local build Would be a temproary workaround for #727 --- src/cljs/athens/main/core.cljs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/cljs/athens/main/core.cljs b/src/cljs/athens/main/core.cljs index fac8992cef..2cce9f0a84 100644 --- a/src/cljs/athens/main/core.cljs +++ b/src/cljs/athens/main/core.cljs @@ -76,7 +76,8 @@ ;; Remove OverlayScrollbars and instances of `overflow-y: overlay` ;; after `scollbar-gutter` is implemented in browsers. :enableBlinkFeatures 'OverlayScrollbars' - :nodeIntegrationWorker true}}))) + :nodeIntegrationWorker true + :spellcheck false}}))) ;; Path is relative to the compiled js file (main.js in our case) (.loadURL ^js @main-window (str "file://" js/__dirname "/public/index.html")) (.on ^js @main-window "closed" #(reset! main-window nil))