From 57b4f49db0f96780cb71e2a45356ccb1930f2d4c Mon Sep 17 00:00:00 2001 From: Gustavo Gard Date: Mon, 9 Oct 2017 21:55:02 -0700 Subject: [PATCH] Remove broken links Summary: Issue https://github.com/facebook/react-native/issues/16255 Remove broken links Closes https://github.com/facebook/react-native/pull/16262 Differential Revision: D6017751 Pulled By: hramos fbshipit-source-id: a9465a8a8212dc7b5e1aae21c73b46e60e24c10e --- Libraries/Animated/src/Easing.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Libraries/Animated/src/Easing.js b/Libraries/Animated/src/Easing.js index 03c4091759..7b396ea4c0 100644 --- a/Libraries/Animated/src/Easing.js +++ b/Libraries/Animated/src/Easing.js @@ -162,11 +162,6 @@ class Easing { * times. * * http://easings.net/#easeInElastic - * - * Wolfram Plots: - * - * - http://tiny.cc/elastic_b_1 (bounciness = 1, default) - * - http://tiny.cc/elastic_b_3 (bounciness = 3) */ static elastic(bounciness: number = 1): (t: number) => number { const p = bounciness * Math.PI;