aboutsummaryrefslogtreecommitdiffstats
path: root/src/webview
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2018-12-09 20:48:25 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2018-12-09 20:48:25 +0100
commit5d6164973e92fa8a3e3c18a0eb2e29494aea4f48 (patch)
tree382e6c672bbc0f7582b3b627b02111dcce902894 /src/webview
parentAdd React 16 didCatch/ErrorBoundary component (diff)
downloadferdium-app-5d6164973e92fa8a3e3c18a0eb2e29494aea4f48.tar.gz
ferdium-app-5d6164973e92fa8a3e3c18a0eb2e29494aea4f48.tar.zst
ferdium-app-5d6164973e92fa8a3e3c18a0eb2e29494aea4f48.zip
Fix linting issues
Diffstat (limited to 'src/webview')
-rw-r--r--src/webview/contextMenu.js4
-rw-r--r--src/webview/recipe.js3
2 files changed, 5 insertions, 2 deletions
diff --git a/src/webview/contextMenu.js b/src/webview/contextMenu.js
index 0349a5d6c..bd099987d 100644
--- a/src/webview/contextMenu.js
+++ b/src/webview/contextMenu.js
@@ -1,7 +1,9 @@
1// This is heavily based on https://github.com/sindresorhus/electron-context-menu 1// This is heavily based on https://github.com/sindresorhus/electron-context-menu
2// ❤ @sindresorhus 2// ❤ @sindresorhus
3 3
4import { clipboard, remote, ipcRenderer, shell } from 'electron'; 4import {
5 clipboard, remote, ipcRenderer, shell,
6} from 'electron';
5 7
6import { isDevMode, isMac } from '../environment'; 8import { isDevMode, isMac } from '../environment';
7import { SPELLCHECKER_LOCALES } from '../i18n/languages'; 9import { SPELLCHECKER_LOCALES } from '../i18n/languages';
diff --git a/src/webview/recipe.js b/src/webview/recipe.js
index c9117ac72..944883899 100644
--- a/src/webview/recipe.js
+++ b/src/webview/recipe.js
@@ -56,7 +56,8 @@ class RecipeController {
56 this.spellcheckingProvider, 56 this.spellcheckingProvider,
57 () => this.settings.app.enableSpellchecking, 57 () => this.settings.app.enableSpellchecking,
58 () => this.settings.app.spellcheckerLanguage, 58 () => this.settings.app.spellcheckerLanguage,
59 () => this.spellcheckerLanguage); 59 () => this.spellcheckerLanguage,
60 );
60 61
61 autorun(() => this.update()); 62 autorun(() => this.update());
62 } 63 }