From f66606b3863f0e3544e41736686e82f0dc514333 Mon Sep 17 00:00:00 2001 From: luckyllama Date: Mon, 10 Aug 2015 10:00:06 -0700 Subject: [PATCH 1/2] Update velocity-animate.d.ts Adding support for the "scroll" effect and related option parameters. See http://julian.com/research/velocity/#scroll --- velocity-animate/velocity-animate.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/velocity-animate/velocity-animate.d.ts b/velocity-animate/velocity-animate.d.ts index 6946da972..b25a31408 100644 --- a/velocity-animate/velocity-animate.d.ts +++ b/velocity-animate/velocity-animate.d.ts @@ -58,5 +58,7 @@ declare module jquery.velocity { delay?: any; mobileHA?: boolean; _cacheValues?: boolean; + container?: JQuery; + axis?: string; } } From 784bd0eb526dbcd3cef8e69ea65aff486d3dae9b Mon Sep 17 00:00:00 2001 From: luckyllama Date: Tue, 11 Aug 2015 14:31:04 -0700 Subject: [PATCH 2/2] Adding "offset" velocity option Adding the "offset" option used in the "scroll" method. --- velocity-animate/velocity-animate.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/velocity-animate/velocity-animate.d.ts b/velocity-animate/velocity-animate.d.ts index b25a31408..523098423 100644 --- a/velocity-animate/velocity-animate.d.ts +++ b/velocity-animate/velocity-animate.d.ts @@ -60,5 +60,6 @@ declare module jquery.velocity { _cacheValues?: boolean; container?: JQuery; axis?: string; + offset?: number; } }