From e570458243e0611fb62f2a8337dc015527c0ee97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=A4=A7=E9=94=A4?= Date: Sun, 13 Aug 2017 14:49:12 +0800 Subject: [PATCH] fix-Firefox --- 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