summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorVincent Taverna <vinny@getlua.com>2015-11-01 18:30:20 -0500
committerVincent Taverna <vinny@getlua.com>2015-11-01 18:30:20 -0500
commite16f51e552a324be098bd622c765842358279131 (patch)
tree72a5b1a0569bff25b5c96d5a370f0fbac0319470 /web
parentdfb48568a3ae9eb018c3826288b760cd91b1ac77 (diff)
downloadchat-e16f51e552a324be098bd622c765842358279131.tar.gz
chat-e16f51e552a324be098bd622c765842358279131.tar.bz2
chat-e16f51e552a324be098bd622c765842358279131.zip
fix isBrowserEdge typo
Diffstat (limited to 'web')
-rw-r--r--web/react/utils/utils.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/utils/utils.jsx b/web/react/utils/utils.jsx
index c7c8549b9..4bd651649 100644
--- a/web/react/utils/utils.jsx
+++ b/web/react/utils/utils.jsx
@@ -976,7 +976,7 @@ export function isBrowserIE() {
}
export function isBrowserEdge() {
- return window.naviagtor && navigator.userAgent && navigator.userAgent.toLowerCase().indexOf('edge') > -1;
+ return window.navigator && navigator.userAgent && navigator.userAgent.toLowerCase().indexOf('edge') > -1;
}
export function getDirectChannelName(id, otherId) {