From 716176f85ed3fb3457939396c14ae13d9a2d84d2 Mon Sep 17 00:00:00 2001 From: jlukic Date: Wed, 11 Dec 2013 23:01:06 -0500 Subject: [PATCH] Fixes #409 dropdown does not contain easing definition for fallback js animation --- src/modules/dropdown.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/modules/dropdown.js b/src/modules/dropdown.js index 535d00a88..754355263 100755 --- a/src/modules/dropdown.js +++ b/src/modules/dropdown.js @@ -836,4 +836,12 @@ $.fn.dropdown.settings = { }; +// Adds easing +$.extend( $.easing, { + easeOutQuad: function (x, t, b, c, d) { + return -c *(t/=d)*(t-2) + b; + }, +}); + + })( jQuery, window , document ); \ No newline at end of file