aboutsummaryrefslogtreecommitdiffstats
path: root/src/webview
diff options
context:
space:
mode:
authorLibravatar vantezzen <properly@protonmail.com>2019-09-12 09:19:10 +0200
committerLibravatar vantezzen <properly@protonmail.com>2019-09-12 09:19:10 +0200
commit828f4bce4ee1d7c53c132f0cce6032c121632015 (patch)
tree732d53bf1419dfd315f96bcb7cc4a43f34d31389 /src/webview
parentMerge branch 'private-notifications' (diff)
downloadferdium-app-828f4bce4ee1d7c53c132f0cce6032c121632015.tar.gz
ferdium-app-828f4bce4ee1d7c53c132f0cce6032c121632015.tar.zst
ferdium-app-828f4bce4ee1d7c53c132f0cce6032c121632015.zip
Use ferdi namespace on debugger
Diffstat (limited to 'src/webview')
-rw-r--r--src/webview/contextMenu.js2
-rw-r--r--src/webview/darkmode.js2
-rw-r--r--src/webview/notifications.js2
-rw-r--r--src/webview/recipe.js2
-rw-r--r--src/webview/spellchecker.js2
5 files changed, 5 insertions, 5 deletions
diff --git a/src/webview/contextMenu.js b/src/webview/contextMenu.js
index 83914f581..ec5833848 100644
--- a/src/webview/contextMenu.js
+++ b/src/webview/contextMenu.js
@@ -8,7 +8,7 @@ import {
8import { isDevMode, isMac } from '../environment'; 8import { isDevMode, isMac } from '../environment';
9import { SPELLCHECKER_LOCALES } from '../i18n/languages'; 9import { SPELLCHECKER_LOCALES } from '../i18n/languages';
10 10
11const debug = require('debug')('Franz:contextMenu'); 11const debug = require('debug')('Ferdi:contextMenu');
12 12
13const { Menu } = remote; 13const { Menu } = remote;
14 14
diff --git a/src/webview/darkmode.js b/src/webview/darkmode.js
index 73c7007c6..ab629435c 100644
--- a/src/webview/darkmode.js
+++ b/src/webview/darkmode.js
@@ -3,7 +3,7 @@
3import path from 'path'; 3import path from 'path';
4import fs from 'fs-extra'; 4import fs from 'fs-extra';
5 5
6const debug = require('debug')('Franz:DarkMode'); 6const debug = require('debug')('Ferdi:DarkMode');
7 7
8const chars = [...'abcdefghijklmnopqrstuvwxyz']; 8const chars = [...'abcdefghijklmnopqrstuvwxyz'];
9 9
diff --git a/src/webview/notifications.js b/src/webview/notifications.js
index f8fe53e1b..021f05cc3 100644
--- a/src/webview/notifications.js
+++ b/src/webview/notifications.js
@@ -1,7 +1,7 @@
1import { ipcRenderer } from 'electron'; 1import { ipcRenderer } from 'electron';
2import uuidV1 from 'uuid/v1'; 2import uuidV1 from 'uuid/v1';
3 3
4const debug = require('debug')('Franz:Notifications'); 4const debug = require('debug')('Ferdi:Notifications');
5 5
6class Notification { 6class Notification {
7 static permission = 'granted'; 7 static permission = 'granted';
diff --git a/src/webview/recipe.js b/src/webview/recipe.js
index c223b73de..e00566283 100644
--- a/src/webview/recipe.js
+++ b/src/webview/recipe.js
@@ -13,7 +13,7 @@ import './notifications';
13 13
14import { DEFAULT_APP_SETTINGS } from '../config'; 14import { DEFAULT_APP_SETTINGS } from '../config';
15 15
16const debug = require('debug')('Franz:Plugin'); 16const debug = require('debug')('Ferdi:Plugin');
17 17
18class RecipeController { 18class RecipeController {
19 @observable settings = { 19 @observable settings = {
diff --git a/src/webview/spellchecker.js b/src/webview/spellchecker.js
index 9158b3b94..1b2d60faf 100644
--- a/src/webview/spellchecker.js
+++ b/src/webview/spellchecker.js
@@ -5,7 +5,7 @@ import path from 'path';
5import { DICTIONARY_PATH } from '../config'; 5import { DICTIONARY_PATH } from '../config';
6import { SPELLCHECKER_LOCALES } from '../i18n/languages'; 6import { SPELLCHECKER_LOCALES } from '../i18n/languages';
7 7
8const debug = require('debug')('Franz:spellchecker'); 8const debug = require('debug')('Ferdi:spellchecker');
9 9
10let provider; 10let provider;
11let currentDict; 11let currentDict;