From c5bf98eb447a76910297b8ccd011ace3310d1372 Mon Sep 17 00:00:00 2001 From: Eric Willigers Date: Wed, 16 Aug 2017 15:36:46 +1000 Subject: [PATCH] Document that we require requestAnimationFrame We make clear that old Chrome versions are not supported, and mention the option of use a requestAnimationFrame polyfill. --- docs/support.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/support.md b/docs/support.md index e6ad592c..4fe76e66 100644 --- a/docs/support.md +++ b/docs/support.md @@ -13,12 +13,16 @@ Browser support The polyfill is supported on modern versions of all major browsers, including: -* Chrome +* Chrome 56+ * Firefox 27+ * IE10+ (including Edge) * Safari (iOS) 7.1+ * Safari (Mac) 9+ +In particular, the polyfill requires requestAnimationFrame. If your browser does not +have requestAnimationFrame, consider loading a requestAnimationFrame polyfill first +([example](https://gist.githubusercontent.com/paulirish/1579671/raw/682e5c880c92b445650c4880a6bf9f3897ec1c5b/rAF.js)). + Native fallback ---------------