aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/jira/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/jira/index.js')
-rw-r--r--recipes/jira/index.js19
1 files changed, 8 insertions, 11 deletions
diff --git a/recipes/jira/index.js b/recipes/jira/index.js
index 0431300..9fd312d 100644
--- a/recipes/jira/index.js
+++ b/recipes/jira/index.js
@@ -1,11 +1,8 @@
1"use strict"; 1module.exports = (Franz) => class Jira extends Franz {
2 2 overrideUserAgent() {
3module.exports = (Franz) => 3 return window.navigator.userAgent.replace(
4 class Jira extends Franz { 4 /(Ferdi|Electron)\/\S+ \([^)]+\)/g,
5 overrideUserAgent() { 5 '',
6 return window.navigator.userAgent.replace( 6 );
7 /(Ferdi|Electron)\/\S+ \([^)]+\)/g, 7 }
8 "" 8};
9 );
10 }
11 };