aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar Vijay A <avijayr@protonmail.com>2021-08-11 18:50:42 +0530
committerLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2021-08-11 13:38:04 +0000
commit11c2b649388687570851fcb58ab59f5daaa3f194 (patch)
tree257acfbcc42e542978b67a1e4edccc87ca0be4a6 /src
parent5.6.1-nightly.22 [skip ci] (diff)
downloadferdium-app-11c2b649388687570851fcb58ab59f5daaa3f194.tar.gz
ferdium-app-11c2b649388687570851fcb58ab59f5daaa3f194.tar.zst
ferdium-app-11c2b649388687570851fcb58ab59f5daaa3f194.zip
revert: fixing #1757 by commenting out partial fix
- Fixes issue with ferdi not starting up. - Also adds some defensive checks for the same code in other repeated locations.
Diffstat (limited to 'src')
-rw-r--r--src/components/auth/SetupAssistant.js2
-rw-r--r--src/components/layout/AppLayout.js2
-rw-r--r--src/components/services/content/ConnectionLostBanner.js2
-rw-r--r--src/components/services/tabs/TabItem.js2
-rw-r--r--src/components/ui/AppLoader/styles.js2
-rw-r--r--src/features/webControls/components/WebControls.js2
-rw-r--r--src/features/workspaces/components/WorkspaceDrawerItem.js2
-rw-r--r--src/features/workspaces/components/WorkspaceSwitchingIndicator.js2
8 files changed, 8 insertions, 8 deletions
diff --git a/src/components/auth/SetupAssistant.js b/src/components/auth/SetupAssistant.js
index 06ab09892..0f821d4fc 100644
--- a/src/components/auth/SetupAssistant.js
+++ b/src/components/auth/SetupAssistant.js
@@ -37,7 +37,7 @@ const messages = defineMessages({
37 37
38let transition = 'none'; 38let transition = 'none';
39 39
40if (window.matchMedia('(prefers-reduced-motion: no-preference)')) { 40if (window && window.matchMedia('(prefers-reduced-motion: no-preference)')) {
41 transition = 'all 0.25s'; 41 transition = 'all 0.25s';
42} 42}
43 43
diff --git a/src/components/layout/AppLayout.js b/src/components/layout/AppLayout.js
index de962cc12..d5e1deb39 100644
--- a/src/components/layout/AppLayout.js
+++ b/src/components/layout/AppLayout.js
@@ -47,7 +47,7 @@ const messages = defineMessages({
47 47
48let transition = 'none'; 48let transition = 'none';
49 49
50if (window.matchMedia('(prefers-reduced-motion: no-preference)')) { 50if (window && window.matchMedia('(prefers-reduced-motion: no-preference)')) {
51 transition = 'transform 0.5s ease'; 51 transition = 'transform 0.5s ease';
52} 52}
53 53
diff --git a/src/components/services/content/ConnectionLostBanner.js b/src/components/services/content/ConnectionLostBanner.js
index 343ddf8b4..ebe863333 100644
--- a/src/components/services/content/ConnectionLostBanner.js
+++ b/src/components/services/content/ConnectionLostBanner.js
@@ -26,7 +26,7 @@ const messages = defineMessages({
26 26
27let buttonTransition = 'none'; 27let buttonTransition = 'none';
28 28
29if (window.matchMedia('(prefers-reduced-motion: no-preference)')) { 29if (window && window.matchMedia('(prefers-reduced-motion: no-preference)')) {
30 buttonTransition = 'opacity 0.25s'; 30 buttonTransition = 'opacity 0.25s';
31} 31}
32 32
diff --git a/src/components/services/tabs/TabItem.js b/src/components/services/tabs/TabItem.js
index 023e152c7..d4a4048eb 100644
--- a/src/components/services/tabs/TabItem.js
+++ b/src/components/services/tabs/TabItem.js
@@ -72,7 +72,7 @@ let pollIndicatorTransition = 'none';
72let polledTransition = 'none'; 72let polledTransition = 'none';
73let pollAnsweredTransition = 'none'; 73let pollAnsweredTransition = 'none';
74 74
75if (window.matchMedia('(prefers-reduced-motion: no-preference)')) { 75if (window && window.matchMedia('(prefers-reduced-motion: no-preference)')) {
76 pollIndicatorTransition = 'background 0.5s'; 76 pollIndicatorTransition = 'background 0.5s';
77 polledTransition = 'background 0.1s'; 77 polledTransition = 'background 0.1s';
78 pollAnsweredTransition = 'background 0.1s'; 78 pollAnsweredTransition = 'background 0.1s';
diff --git a/src/components/ui/AppLoader/styles.js b/src/components/ui/AppLoader/styles.js
index 011f6282d..9891e0387 100644
--- a/src/components/ui/AppLoader/styles.js
+++ b/src/components/ui/AppLoader/styles.js
@@ -1,6 +1,6 @@
1let sloganTransition = 'none'; 1let sloganTransition = 'none';
2 2
3if (window.matchMedia('(prefers-reduced-motion: no-preference)')) { 3if (window && window.matchMedia('(prefers-reduced-motion: no-preference)')) {
4 sloganTransition = 'opacity 1s ease'; 4 sloganTransition = 'opacity 1s ease';
5} 5}
6 6
diff --git a/src/features/webControls/components/WebControls.js b/src/features/webControls/components/WebControls.js
index 417ebb0b0..9a95eb2d2 100644
--- a/src/features/webControls/components/WebControls.js
+++ b/src/features/webControls/components/WebControls.js
@@ -38,7 +38,7 @@ const messages = defineMessages({
38 38
39let buttonTransition = 'none'; 39let buttonTransition = 'none';
40 40
41if (window.matchMedia('(prefers-reduced-motion: no-preference)')) { 41if (window && window.matchMedia('(prefers-reduced-motion: no-preference)')) {
42 buttonTransition = 'opacity 0.25s'; 42 buttonTransition = 'opacity 0.25s';
43} 43}
44 44
diff --git a/src/features/workspaces/components/WorkspaceDrawerItem.js b/src/features/workspaces/components/WorkspaceDrawerItem.js
index c3f9fcb19..f08e87bd7 100644
--- a/src/features/workspaces/components/WorkspaceDrawerItem.js
+++ b/src/features/workspaces/components/WorkspaceDrawerItem.js
@@ -20,7 +20,7 @@ const messages = defineMessages({
20 20
21let itemTransition = 'none'; 21let itemTransition = 'none';
22 22
23if (window.matchMedia('(prefers-reduced-motion: no-preference)')) { 23if (window && window.matchMedia('(prefers-reduced-motion: no-preference)')) {
24 itemTransition = 'background-color 300ms ease-out'; 24 itemTransition = 'background-color 300ms ease-out';
25} 25}
26 26
diff --git a/src/features/workspaces/components/WorkspaceSwitchingIndicator.js b/src/features/workspaces/components/WorkspaceSwitchingIndicator.js
index 613075c4a..c8ec0bc4c 100644
--- a/src/features/workspaces/components/WorkspaceSwitchingIndicator.js
+++ b/src/features/workspaces/components/WorkspaceSwitchingIndicator.js
@@ -17,7 +17,7 @@ const messages = defineMessages({
17 17
18let wrapperTransition = 'none'; 18let wrapperTransition = 'none';
19 19
20if (window.matchMedia('(prefers-reduced-motion: no-preference)')) { 20if (window && window.matchMedia('(prefers-reduced-motion: no-preference)')) {
21 wrapperTransition = 'width 0.5s ease'; 21 wrapperTransition = 'width 0.5s ease';
22} 22}
23 23