From 3cac5c766fc7b75cacf0a51dbfe10269eb3caf6a Mon Sep 17 00:00:00 2001 From: Wade Date: Sun, 13 Aug 2017 07:53:17 -0500 Subject: [PATCH] fix-Firefox (#6359) --- src/core/util/env.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/util/env.js b/src/core/util/env.js index 52f5067a690..04f43256294 100644 --- a/src/core/util/env.js +++ b/src/core/util/env.js @@ -17,7 +17,7 @@ export const isAndroid = UA && UA.indexOf('android') > 0 export const isIOS = UA && /iphone|ipad|ipod|ios/.test(UA) export const isChrome = UA && /chrome\/\d+/.test(UA) && !isEdge -// Firefix has a "watch" function on Object.prototype... +// Firefox has a "watch" function on Object.prototype... export const nativeWatch = ({}).watch export let supportsPassive = false